$displayPerPage = 10;
$_GET['pageSelected'];
$nextPageInfo = @mysql_query("SELECT * FROM myTable LIMIT (($_GET['pageSelected']*$displayPerPage)-$displayPerPage) , $displayPerPage");
Should work...
EDIT: OOPS! Hit the wrong key! Had to EDIT the code...