function make_table($table) { echo "<table>"; foreach($table as $row) { echo "<tr>"; foreach($row as $cell) { echo "<td>"; echo $cell; echo "</td>"; } echo "</tr>"; } echo "</table>"; }
Done