I am having trouble making that work. How would I repeat a table that has content in it like this?
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="152" height="126" align="center" valign="top"><img name="prodimage" src="<?php echo $row_Products['picture']; ?>" alt=""></td>
</tr>
<tr>
<td height="23" align="center" valign="top" class="datetext"><?php echo $row_Products['name']; ?></td>
</tr>
</table>
I am very inexperienced with all this so I am not sure where everything fits in when you do something like this. above I have a picture of a product and a name. I am using alot of the php functions built into dreamweaver for some of this stuff if that makes a lot of difference.
I hope it does not mean that I will have to rework all of the code already on the page to do this.