PHP Code:
echo "<table>";
foreach($show as $i => $d) {
echo "<tr>";
foreach($show[$i] as $j => $jd) {
echo "<td>" . $jd . "</td>";
}
echo "</tr>";
}
echo "</table>";
with your array, that is the easiest way to do it.
(i love arrays <3)
and sam, it would be more efficient to use a LIMIT statement in your SQL query to limit the rows listed (and you can do pages with that too).