The variables passed in the query string are automatically made available as variables in PHP. FOr example, if the query string was:
test.php?Name=Steve&Age=21
Then you could do this in your PHP script...
<?php
echo("Your name is " . $Name . " and you are " . $Age . " year(s) old.");
?>
Hope this helps!
Regards,
Steve