url's can contain multiple variables by separating each with an '&'...for example
page.php?var1=33&var2=45&var3=99
when page.php gets processed, you have access to $var1 (with the value of 33), $var2 (with the value 45), and $var3 (with the value of 99).
url variable passing gets sticky when there are spaces in the variable values like so: page.php?var1=the var value
to avoid problems with that, use the urlencode() function, something like this: $var1 = urlencode($var1);
this will ensure the entire string gets passed in the varialbe
hope this helps