| Variable | Value |
| $_SERVER['argv'] | This variable returns the query string associated with a request |
| $_SERVER['DOCUMENT_ROOT'] | Path to the application's root |
| $_SERVER['HTTP_ACCEPT'] | The value of the Accept header |
| $_SERVER['HTTP_ACCEPT_CHARSET'] | The value of the Acccept-Charset header |
| $_SERVER['HTTP_ACCEPT_ENCODING'] | The value of the Accept-Encoding header |
| $_SERVER['HTTP_ACCEPT_LANGUAGE'] | The value of the Accept-Language header |
| $_SERVER[HTTP_CONNECTION'] | The value of the Connection header |
| $_SERVER['HTTP_HOST'] | The value of the Host header |
| $_SERVER['HTTP_REFERER'] | The value of the Referer header |
| $_SERVER['HTTP_USER_AGENT'] | The value of the User-Agent header |
| $_SERVER['HTTPS'] | The value 'https' if the request was made using the https transport |
| $_SERVER['REMOTE_ADDR'] | The IP address of the client making the request |
| $_SERVER['REMOTE_HOST'] | The host name of the client making the request |
| $_SERVER['REMOTE_PORT] | The port number of the client making the request |
| $_SERVER['SCRIPT_FILENAME'] | The file name of the script being invoked |
| $_SERVER['SCRIPT_NAME'] | The name of the script being invoked |
| $_SERVER['SERVER_PORT'] | The port number that the server accepted the request on |
| $_SERVER['REQUEST_METHOD'] | The HTTP method of the request |
| $_SERVER['REQUEST_URI'] | The URI associated with the HTTP request |
| $_SERVER['REQUEST_TIME'] | The time stamp when the request was dispatched to the script |