WilliamMute
Programmer
- Jan 4, 2006
- 117
Hello everyone, I have a question please and am wondering if anyone can lend a helping hand. I am querying a MySQL database for records, storing them in a recordset.
THE PROBLEM:
When am displaying the recordset, it seems to be displaying each record twice in other words it seem like it going through the while loop twice. here is my code please.
<table width="100%"> There are currently <?php echo "$total_records"; ?> found Bracelets
<?php
while($row_Recordset1 = mysql_fetch_assoc($Recordset1) ) { ?>
<tr>
<td class="SubHeadings" colspan="3">Bracelets - </td>
</tr>
<tr class="LoopRowsQuery"><p>
<td width="173" align="center" class="LoopRowsQuery"><p><a href="gift.php"><img src="<?php echo "products/". $row_Recordset1['image']; ?>.jpg" alt="Gift Ideas" width="102" height="118" border="0" align="absbottom" class="RightTablesImges"></a></p></td>
<td width="173" align="center" class="LoopRowsQuery"><p><a href="gift.php"><?php echo $row_Recordset1['product_name']; ?></a></p></td>
<td width="173" align="center" class="LoopRowsQuery"><p><a href="gift.php">£<?php echo $row_Recordset1['product_price']; ?></a></p>
</td>
</tr>
<tr>
<td height="10"> </td>
</tr>
<tr>
<td class="SubHeadings" colspan="3">Bracelets - </td>
</tr>
<tr class="LoopRowsQuery2">
<td width="173" align="center" class="LoopRowsQuery2"><p><a href="gift.php"><img src="<?php echo "products/". $row_Recordset1['image']; ?>.jpg" alt="Gift Ideas" width="102" height="118" border="0" align="absbottom" class="RightTablesImges"></a></p></td>
<td width="173" align="center" class="LoopRowsQuery2"><p><a href="gift.php"><?php echo $row_Recordset1['product_name']; ?></a></p></td>
<td width="173" align="center" class="LoopRowsQuery2"><p><a href="gift.php">£<?php echo $row_Recordset1['product_price']; ?></a></p></td>
</tr>
<tr>
<td height="10"> </td>
</tr>
<?php
}
?>
Any Help is much appreciated. If you could also render help towards displaying say 10 records at a time with link of pages at the bottom for next and previous page great, because I have been on that for a few days as well read so many articles but yet no luck.
Cheers
THE PROBLEM:
When am displaying the recordset, it seems to be displaying each record twice in other words it seem like it going through the while loop twice. here is my code please.
<table width="100%"> There are currently <?php echo "$total_records"; ?> found Bracelets
<?php
while($row_Recordset1 = mysql_fetch_assoc($Recordset1) ) { ?>
<tr>
<td class="SubHeadings" colspan="3">Bracelets - </td>
</tr>
<tr class="LoopRowsQuery"><p>
<td width="173" align="center" class="LoopRowsQuery"><p><a href="gift.php"><img src="<?php echo "products/". $row_Recordset1['image']; ?>.jpg" alt="Gift Ideas" width="102" height="118" border="0" align="absbottom" class="RightTablesImges"></a></p></td>
<td width="173" align="center" class="LoopRowsQuery"><p><a href="gift.php"><?php echo $row_Recordset1['product_name']; ?></a></p></td>
<td width="173" align="center" class="LoopRowsQuery"><p><a href="gift.php">£<?php echo $row_Recordset1['product_price']; ?></a></p>
</td>
</tr>
<tr>
<td height="10"> </td>
</tr>
<tr>
<td class="SubHeadings" colspan="3">Bracelets - </td>
</tr>
<tr class="LoopRowsQuery2">
<td width="173" align="center" class="LoopRowsQuery2"><p><a href="gift.php"><img src="<?php echo "products/". $row_Recordset1['image']; ?>.jpg" alt="Gift Ideas" width="102" height="118" border="0" align="absbottom" class="RightTablesImges"></a></p></td>
<td width="173" align="center" class="LoopRowsQuery2"><p><a href="gift.php"><?php echo $row_Recordset1['product_name']; ?></a></p></td>
<td width="173" align="center" class="LoopRowsQuery2"><p><a href="gift.php">£<?php echo $row_Recordset1['product_price']; ?></a></p></td>
</tr>
<tr>
<td height="10"> </td>
</tr>
<?php
}
?>
Any Help is much appreciated. If you could also render help towards displaying say 10 records at a time with link of pages at the bottom for next and previous page great, because I have been on that for a few days as well read so many articles but yet no luck.
Cheers