I am printing my last 8 rows of my database into my home page…It gets printed
But i need each row shud have different hyperlinks…I dont know how to do it…as of now tis is my code in my webpage
<?php
while($row=mysql_fetch_array($result8))
{
$titleb=$row["titleb"];
?>
<p align="left" class="newstitlestyle"><img src="images/star.png" width="20" height="20" /> <a href="gallery.php" ><?php echo $titleb."<br><br>" ?></a>
<? } ?>