3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a=[ [ [ 'EmpId'=>1068, 'Name'=>'SATHIYA MOORTHI', 'Is thisuseful ?'=>'Yes', 'what did you learn from this?'=>'' ] ], [ [ 'EmpId'=>5000, 'Name'=>'Ben Praveen', 'Is thisuseful ?'=>'Yes', 'what did you learn from this?'=>'' ] ] ]; echo "<table border=\"1\" cellpadding=\"4px\" style=\"white-space:nowrap;\">\n"; echo "\t<tr>\n\t\t<th>",implode('</th><th>',array_keys(current(current($a)))),"</th>\n\t</tr>\n"; foreach($a as $surveyreports){ foreach($surveyreports as $rows){ echo "\t<tr>\n\t\t<td>",implode('</td><td>',$rows),"</td>\n\t</tr>\n"; } } echo "<table>";

preferences:
137.2 ms | 406 KiB | 5 Q