Super global variable in PHP

What is super global variable ?

Super globals are built-in variables that are always available in all scopes.Many predefined variables in PHP are \”super globals\”, that means they are always accessible, regardless of scope – and you can access them from any function, class or file.super global variable is widely used to collect data after submitting html forms.

There are following   PHP superglobal variables:

Scroll to Top