If you want to see all the GET parameters passed to the script via the URL query string:
echo "<pre>" . print_r($_GET, true) . "</pre>\n";
Same for $_POST, $REQUEST, $COOKIE, $_SESSION.
Or, a quick way to see everything in the current scope:
echo "<pre>" . print_r($GLOBALS, true) . "</pre>\n";