This loops all the places i've been to
Thailand
Singapore
Sydney
But on the last one i want to change join.gif to end.gif
How can i do this?
<?php
$result2 = mysql_query ("SELECT * From travel_trips");
while($row2 = mysql_fetch_array($result2)) {
?>
<img border="0" src="images/join.gif" width="18" height="18">
<img border="0" src="images/folder.gif" width="16" height="16">
<a href="photos.php?trip=<?php echo $row2['trip_id']; ?>"><?php echo $row2['destination']; ?></a>
<?php
}
?>