What are superglobals?
Built-in variables that are always available in all scopes.
What is $GLOBALS?
It references all variables available in global scope.
What is $_SERVER?
Server and execution environment information.
What is $_ENV?
Environment variables.
What is $php_errormsg?
The previous error message.
What is $argc?
The number of arguments passed to the script.
What is $argv?
An array of arguments passed to the script.