Hi,
Is it possible to code something like this http://www.tom-muck.com/extensions/help/HorizontalVerticalLooperHelp/
?
I'm not quite sure how i should code it in my Do-while loop which i want my recordset to display for every 3 columns another row. So it would be something like
1 2 3
4 5 6
7 8 9
10 11 12
<table width="137" border="0" cellspacing="1" cellpadding="1">
<tr>
<?php do{ ?>
<td width="91"><img name="<?php echo $row_Recordset2['itemname']; ?>" src="upldimg/<?php echo $row_Recordset2['thumb_filename']; ?>" width="80" height="100" alt=""></td>
<td width="39"><p class="itemstyle"><?php echo $row_Recordset2['itemname']; ?></p>
<p class="pricestyle">$<?php echo $row_Recordset2['price']; ?></p></td>
<td> </td>
<?php } while ($row_Recordset2 = mysql_fetch_assoc($Recordset2)); ?>
</tr>
</table>