superglobal
A superglobal is a term used in PHP to describe a set of built-in variables that are automatically available in all scopes of a script. They are global and accessible from any function, class method, included file, or code block without requiring a global declaration. Superglobals are populated by PHP from request data, user input, or environment information and are typically arrays or array-like structures.
PHP defines several superglobals, the most commonly used being $_GET, $_POST, $_COOKIE, $_REQUEST, $_SESSION, $_FILES, $_SERVER,
Access to these variables is simple, for example reading a query parameter with $_GET['id'] or a submitted
Superglobals are a core feature of PHP and are distinct from ordinary variables by being always accessible