<?php $array = [['name'=>'a'],['name'=>'b'],['name'=>'c']]; $output = '<div class="test">'; foreach($array as $a) { $output .= '<div class="testing">'.$a['name'].'</div>'; } $output .= '</div>'; return var_dump($output); ?>
You have javascript disabled. You will not be able to edit any code.