Forum Moderators: coopster
<table>
<tr>
<td>Item 1</td>
<td><?php //php code to retrieve the price ?>
</tr>
<tr>
<td>Item 2</td>
<td><?php //php code to retrieve the price ?>
</tr>
</table>
$sql="SELECT * FROM pricelist";
$result = mysql_query($sql) or die(mysql_error());
<?php while($row=mysql_fetch_array($result)) { ?>
<table cellpadding="0" cellspacing="0" id="models">
<tr>
<td colspan="2" class="headings-border">Copper</td>
<td colspan="2" class="headings border-top border-right">Aluminium</td>
</tr>
<tr>
<td class="border-left">Item 1</td>
<td class="border-right"><?=$row['item1']?></td>
<td>Item 3</td>
<td class="border-right"><?=$row['item2']?></td>
</tr>
<tr>
<td class="border-left">Item 2</td>
<td class="border-right"><?=$row['item3']?></td>
<td>Item 4</td>
<td class="border-right"><?=$row['item4']?></td>
</tr>
</table>
<?php } ?>