Jump to content

[SOLVED] accessing next record


jcombs_31

Recommended Posts

I have a database in which the primary key auto increments for each new record.  I have a gallery that needs to have a left/right button to access the next image.  There is a possibility that a record was deleted, which means increasing a counter by 1 could come up empty.  What is the best way to handle this?  I want to simply move to the next availabe record based on the id.  I could do a check to see if the record exists, but I would think there would be something even easier to account for this.

Link to comment
https://forums.phpfreaks.com/topic/38774-solved-accessing-next-record/
Share on other sites

the next row.

pretend row currently is row=5

then SELECT rowID from theTable WHERE rowID > 5 LIMIT 1

should get next highest rowID by getting all rows higher than 5, but only pulling 1st row.

 

if returns a row, then put a button, if doesnt, dont include Next Image button.

  • 3 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.