hi Sorry - ive only been learning all this for about 2 days so this is what i have done so far.
YOu can this this at this address...
http://www.bluetipdvd.co.uk/index.php
The cell that holds 'google links go here' should not be repeating.
thanks
simon
http://www.bestblanks.co.uk
<table width="766" border="1" align="center" bgcolor="#FFFFFF">
<?
$i=0;
while ($i < $num) {
$ID=mysql_result($result,$i,"ID");
$name=mysql_result($result,$i,"name");
$price=mysql_result($result,$i,"price");
$photo=mysql_result($result,$i,"photo");
$addtocart=mysql_result($result,$i,"addtocart");
?>
<tr>
<td colspan="2"><font color="#333333" size="2">PROD CODE</font> <? echo "$ID" ?></td>
<td width="10%" rowspan="6"><div align="center">GOOGLE LINKS GO HERE</div></td>
</tr>
<tr>
<td colspan="2"><font color="#000000" size="2"><strong>DVD TITLE</strong></font><br>
<? echo "$name" ?> </td>
</tr>
<tr>
<td colspan="2">£<? echo "$price" ?> </td>
</tr>
<tr>
<td> <? echo "$photo" ?> </td>
<td><? echo "$addtocart" ?></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td height="25" colspan="2"><hr width="80%"></td>
</tr>
<?
$i++;
}
?>
</table>