I am trying to limit the number of rows transmitted from the MySQL server to the web server. If I run a query like $result = mysql_query($query), and I get $rows_returned = mysql_num_rows($result) of 500, I would like to be able to show on this page only rows 50 - 75. (And then I will show results page numbers to give the user access to the rest.)
Is there a way that I can tell PHP to request only rows 50 - 75 from the MySQL server after I have run the initial query and found out how many rows were returned?
Thank you very much for your assistance!
Best,
Mel