<?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>";
You have javascript disabled. You will not be able to edit any code.