Page 1 of 1

Move next in MySql

Posted: Sun May 18, 2003 11:24 am
by nmotion
In ASP and MS SQL you can use move next to skip a number of records before looping trough them. How do you do this in PHP and MySQL ?

Posted: Sun May 18, 2003 1:38 pm
by m3mn0n
LIMIT 10, 20


..maybe?

Posted: Sun May 18, 2003 8:37 pm
by McGruff
Another option might be mysql_data_seek() - but LIMIT'ing the result in the first place might be best.