To be more specific, for all of the newbies running around here, since PHP 4.1.x request variables are NOT automatically registered in the Global namespace. You must either change the value of Register_Globals in your PHP.INI (not recommended) or retreive them in your script from the super global arrays.
$x=$_GET['yourvar'];
$x=$_POST['yourvar'];
$x=$_COOKIE['yourvar'];
$x=$_REQUEST['yourvar'];
Note: the REQUEST will pull gets, posts, and cookies. But use it with caution. You don't want evil users figuring out they can overide your variable by using another method.