Hi, I have some code... see below
<?php while ($row_rsAccountList = mysql_fetch_assoc($rsAccountList)){ ?>
<tr>
<td nowrap><?php echo $row_rsAccountList['acc_id']; ?></td>
<td nowrap><?php echo $row_rsAccountList['name']; ?></td>
<td nowrap><?php echo $row_rsAccPlan_2['product_name']; ?></td>
<td nowrap> </td>
<td nowrap> </td>
<td nowrap><?php echo $row_rsAccountList['signup_date']; ?></td>
</tr>
<?php }; ?>
that would appear to be working fine, if I never knew better, but it is failing to return one record for some reason, I have the RecordSet get ALL entries in the table, and it tells me it selected 5 records, but only prints 4 to the screen. How do i get the 5th record on screen? I have tried changiong the where clause to:
<?php while ($row_rsAccountList = mysql_fetch_assoc($rsAccountList)) || ($row_rsAccountList = mysql_fetch_assoc($rsAccountList, +1)) { ?>
With no joy!
Any ideas???
Regards,
Charlie