I have content.php page that when I click on "More" it must give me the same content with the id number
<a class="btn text_3 color_3" href="contentdesc.php?contentid=<?=$content["id"]?>">more</a>
the problem is when i Click on More, it direct me to contentdesc.php and gives me the last row in the table by this query:
<?php
$select="SELECT * FROM content WHERE id HAVING COUNT(*) > 1";
$query=mysql_query($select);
while($row=mysql_fetch_assoc($query)) {
?>
<div class="grid_12">
<div class="box3">
<h3 class="text_4 equal" data-mh="3"><?=$row['name']?></h3>
<div class="divider"></div>
<p class="text_8 color_6"><?=$row['description']?></p>
</div>
</div>
<?php } ?>
Please can anyone help me to bring the content as same id number in the row?