Re: Start recordset with 2nd record

message from peopel on 17 Jul 2004
Is the query the same for both? If so, why bother with a second recordset?

Gary

Yes, the query is the same. I thought it would be best to make two seperate
recordsets, but it looks like the suggestions seem to be more in the
fetching/displaying of the records, rather than the recordset itself.

OK, so here's my code to display the data (assuming one recordset). I'm still
not sure I understand how to not list the first record in the recordset.

<?php do { ?>
<tr>
<td><?php echo fixDate($row_rsEvents1['startd]); ?></td>
<td><a href="event_detail.php?id=<?php echo
$row_rsEvents1['id']; ?>"><?php echo $row_rsEvents1['title']; ?></a></td>
</tr>
<?php } while ($row_rsEvents1 =
mysql_fetch_assoc($rsrsEvents1)); ?>
 
Gary White replied to peopel on 17 Jul 2004
It's not a matter of not listing the first record. As I understand your
explanation of what you want, you DO want to display the first record.
You just want to display it in a different place on the page, right?

Gary
 

Archived message: Re: Start recordset with 2nd record (Macromedia Dreamweaver)