| Author: | Rex Ford |
|---|---|
| Mode: | php |
| Date: | Sun, 12 Jun 2011 07:34:18 |
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>";
}