|
 |
|
";
while ($counter<$numrow) {
print " | \n";
$cellcounter=0;
while($cellcounter<3) {
print "| ";
if ($counter<=$numrow) {
list($id, $category, $pic_path) = mysql_fetch_row($result);
print "$category$id";
}
print " | ";
$counter++;
$cellcounter++;
}
print " \n";
}
print " ";
?>
|
 |
|
";
while ($counter<$numrow) {
print " | \n";
$cellcounter=0;
while($cellcounter<3) {
print "| ";
if ($counter<=$numrow) {
list($id, $category, $pic_path) = mysql_fetch_row($result);
print "$category$id";
}
print " | ";
$counter++;
$cellcounter++;
}
print " \n";
}
print " ";
?>
|