generally:
call this script on your php-enabled webspace
<?
echo $name;
?>
using this url:
script.php?name=value
and you'll see that the name parameter can be accessed as a variable $name under php, as the "value" assigned to name in the url is being put out by php.