This seems like it should be easy, but I'n new to this...
I want to display a thumbnail image search return with a specified number of thumbs per row. Using a while loop is easy for one per row
while ($info = mysql_fetch_array($result)) {
$thumb = $info["thumbName"];
$large = $info["largeName"];
$name = $info["item_name"];
$id = $info["item_id"];
echo "<td><img src=\"thumbName\"<br>";
echo "<td>$name</td>;
}
but say I want 3 per row, what then?
thanks