Continue to search MySQL after a particular ID

-2

Good evening, I would like to know how I can continue a MySQL query through PHP ( query () ), example I did a search and found a user ID 1584, and I want to search for another, but starting of ID 1584.

I tried with LIMIT, but I did not get the result waiting.

    
asked by anonymous 09.12.2018 / 01:29

1 answer

0

Try adding in the query: where ID > 1584

    
09.12.2018 / 02:19