instead of passing mysql code, which is insecure, you should do it this way.
whatever.php?start=0&limit=10
then in your query:
$query = "SELECT * FROM tablename LIMIT " . $_GET['start'] . "," . $_GET['limit'];
Passing the mysql code in your query string is BAD because someone else can change it and execute code that will retrieve info out of your database that you don't want them to have, heck, maybe even erase it.