Hi
It's on your own machine, yes? Did you edit php.ini and set register_globals=on (default is off).
You can't assume it is on if you distribute a script, as many hosts now disable for security reasons, and php5 it is hard coded off.
You need to read the variables in from the $_GET array otherwise, like:
foreach (array_keys($GET) as $key)
{
$$key = $GET[$key];
// print "GET variable $key is ${$key}<br />";
}
The commented line you can use to debug, otherwise delete it.
Trevor