are you saying you can see the values in the URL, but can't grab them to use in your script? Are you accessing them as globals?
$var_name
should be
$_GET['var_name']
You didn't provide any code, so my only guess from your description is you have globals set to off (as they should be) and are trying to access the variable as if they were on.
Cgraz