PHP provides superglobals like $_GET, $_POST, $_SESSION, $_SERVER, $_COOKIE, and $_FILES that are accessible in any scope without needing 'global'. They carry request data, server info, and session state.
Because superglobals contain user input, values from $_GET/$_POST must always be validated and sanitized before use.