Page is a not externally linkable
Anyango - 5:22 am on Sep 20, 2008 (gmt 0)
[edited by: Anyango at 5:24 am (utc) on Sep. 20, 2008]
<table>
<?php
$nextColumn=1;
echo "<tr>";
while ($row = mysql_fetch_array($result))
{
echo "<td><an image></td>";
$nextColumn++;
if($nextColumn>3)
{
echo "<tr>";
$nextColumn=1;
}
}
?>
</table>