Hi, Many thanks for your reply.
I now have the four on one row but all of my images are broken. Any help would be great again thanks.
<?php
$dbc = mysql_connect('XXXXXX','a5314660_XXXX','XXXX') or die(mysql_error());
mysql_select_db("a5314660_XXXXX") or die(mysql_error());
?>
<?php
$count = 0;
$query = "SELECT * FROM holidays WHERE type='tropical'";
$result = mysql_query($query) or die(mysql_error());
echo '<div class="column1">';
while ($row = mysql_fetch_row($result))
echo '<a href="'.$row['galurl'].'"><img height="179" width="119" src="'.$row['hotimage'].'" border="0" alt="'.$row['altname'].'">';
?>
Also when my boxes get displayed they are bunched up right together. I would like a slight gap inbetween each one but im not sure how to do this.
Here is my div properties in my stylesheet.
.column1 {float: left; width: 476px; padding: 20px; }