Special Arrays
- _SERVER
- _GET
<?php
print $_SERVER["HTTP_USER_AGENT"];
?>
<p>
<?php
print $_GET["name"];
?>
</p>
<a href="?name=Something">What else ?</a>
- [About reserved variables](http://www.php.net/manual/en/reserved.variables.php" %}
- CGI Specification