Introduction
Put simply, these are variables that are available in all scope in your scripts.
This means that there is no need to pass them as parameters in your functions, or store them outside a block of code to have them available in different scopes.
What's a superglobal??
If you're thinki...