<?php
$sql1= mysql_query("SELCT * FROM adds ORDER BY adds_id DESC ");
while($row=mysql_fetch_array($sql1)){?>
<tr>
<td width="134" valign="top" style="padding-left:10px;">
<?php echo $row['image_name'];?>
</td>
when I use this code I able to display a single image, but I want to display an image with refresh, means when user refresh – a new image will display.
Can this will be happen with rand() or need to any JavaScript
TRY