This commit is contained in:
kobus 2018-04-20 09:59:53 +02:00
parent 44e9641f78
commit 69684835b3
1 changed files with 2 additions and 2 deletions

View File

@ -55,14 +55,14 @@ switch($arr) {
} }
/** /**
* Global variable * Global variables
* http://php.net/manual/en/language.variables.superglobals.php * http://php.net/manual/en/language.variables.superglobals.php
*/ */
$_SERVER; // SERVER variables $_SERVER; // SERVER variables
$_GET; // Query params $_GET; // Query params
$_POST; // Post fields $_POST; // Post fields
$_REQUEST; // GET and POST together $_REQUEST; // GET and POST together
$GLOBALS; // Collection of global variables $GLOBALS; // Array of global variables
$_SESSION; // Browser session $_SESSION; // Browser session
$_FILES; // Array of files that are sent in request $_FILES; // Array of files that are sent in request
$_COOKIE; // Array of cookies sent in request $_COOKIE; // Array of cookies sent in request