Do you mean passing variables from one page to another page using the url? Yes, take multiple page for example. You have a url like this:
http://www.mydomain.com/data.php?page=1&offset=0&amount=10
<a href=data.php?page=1&offset=0&amount=10>link</a>
$result=mysql_query("SELECT * FROM table_name LIMIT $offset,$amount");
you will have $page=1, $offset=0 and $amount=10 i.e to display 10 first data of the table.