Hi All,
If want to be able to display some photos on a page but I do not want them " one to a colum" I want two to a row.
The code I have so far is:
<?php do { ?>
<tr>
<td><div align="center" class="bodytext"><?php echo $row_photos['link']; ?></div></td>
<td><div align="center"><img src="/photos/<?php echo $row_photos['photo']; ?>" /></div></td>
</tr>
<tr>
<td> </td>
<td><div align="center"><img src="images/rossrunning_bg.gif" width="252" height="13" /></div></td>
</tr>
<?php } while ($row_photos = mysql_fetch_assoc($photos)); ?>
ROW 1 : photo1 - photo2
ROW2 : photo3 - photo4
and so on.
How could this be done?