Never used it this way. I always do script.php?var1=1&var2=2&var3=3
And then, on the next page, check for:
$var1,$var2 and $var3,
or
$GET["var1"],$GET["var2"] and $_GET["var3"]
or
$HTTP_GET_VARS["var1"], $HTTP_GET_VARS["var2"] and $HTTP_GET_VARS["var3"]
If you're afraid that someone can enter the value in the URL, you can always set a FORM and use POST instead. Then, on the next page, use this:
if($REQUEST_METHOD != "POST"){
you_think_you_are_clever_huh();
}else{
you_are_a_good_guy();
}
Of course these functions do not exist.
Hope it helps
fLIPIS