PHP Predefined Variables
by Ranganathan[ Edit ] 2012-08-28 18:54:44
* Superglobals âАФ Superglobals are built-in variables that are always available in all scopes
* $GLOBALS âАФ References all variables available in global scope
* $_SERVER âАФ Server and execution environment information
* $_GET âАФ HTTP GET variables
* $_POST âАФ HTTP POST variables
* $_FILES âАФ HTTP File Upload variables
* $_REQUEST âАФ HTTP Request variables
* $_SESSION âАФ Session variables
* $_ENV âАФ Environment variables
* $_COOKIE âАФ HTTP Cookies
* $php_errormsg âАФ The previous error message
* $HTTP_RAW_POST_DATA âАФ Raw POST data
* $http_response_header âАФ HTTP response headers
* $argc âАФ The number of arguments passed to script
* $argv âАФ Array of arguments passed to script