Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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