Well depending upon the version of php your server is running....
a page which has parameters passed via the url (GET) automatically generates the variables for you.
thus $GET['name']; and $GET['age']; are produced by php itself and these two variables are now available for use.
Some versions of php will require $HTTP_GET_VARS['name']; etc and PHP with register_globals = on automatically assigns those above variables to the names $name and $age for you.
To make your code easier, you can simply declare the following:
$name = $GET['name'];
$age = $GET['age'];