Super global variables in PHP
Super global variables in PHP are available everywhere and there is no need to define them.
Super global variables have $_ in the beginning.
Example of super global variables are:
$_SERVER
$_GET
$_POST
$_FILES
$_COOKIE
$_SESSION
$_REQUEST
$_ENV
Super global variables hold vital information about the environment.
Comments
Post a Comment