| Server Variables |
SERVER_PROTOCOL Name and revision of the information protocol via which the page was requested; i.e. 'HTTP/1.0'; | HTTP/1.1 |
REQUEST_METHOD Which request method was used to access the page; i.e. 'GET', 'HEAD', 'POST', 'PUT'. | GET |
QUERY_STRING The query string, if any, via which the page was accessed. | url=resources/browser_info.php |
SERVER_PROTOCOL Name and revision of the information protocol via which the page was requested; i.e. 'HTTP/1.0'; | HTTP/1.1 |
HTTP_USER_AGENT Contents of the User-Agent: header from the current request, if there is one. This is a string denoting the user agent which is accessing the page. A typical example is: Mozilla/4.5 [en] (X11; U; Linux 2.2.9 i586). | CCBot/1.0 (+http://www.commoncrawl.org/bot.html) |
REMOTE_ADDR The IP address from which the user is viewing the current page. | 38.103.63.59 |
REMOTE_PORT The port being used on the user's machine to communicate with the web server. | 46523 |
REQUEST_URI The URI which was given in order to access this page; for instance, '/index.html'. | /resources/browser_info.php |
| HTTP GET Variables |
HTTP_GET An associative array of variables passed to the current script via the HTTP GET method. | Array
(
[url] => resources/browser_info.php
)
|
| Request Variables |
HTTP_REQUEST An associative array consisting of the contents of HTTP_GET, HTTP_POST, and HTTP_COOKIE. | Array
(
[url] => resources/browser_info.php
)
|
| Session Variables |
HTTP_SESSION An associative array containing session variables available to the current script. | Array
(
[Config] => Array
(
[rand] => 1208504242
[time] => 1223752423
[userAgent] => b260d25dcd9c138e5e653c28eaa88044
)
)
|