I have this query straight from the sql manual and I cannot get it to work.
$query = "Select * From Results Limit $f,$l;";
$f = 645
the number of the auto incremented id key I want it to return
$l =5
the next five entries
when I try to run it it kills my while loop and outputs nothing. I hardcode numbers in it nothing. It really has me stumped.
here is the manual
SELECT * FROM tbl LIMIT 5,10; # Retrieve rows 6-15
can't seem to get it to output anything.
Thanks for the help!
Tom