Started writing the Super Globals (#32995)

I started creating the super globals file. I have mentioned $_GET and $_POST I will continue with the others
This commit is contained in:
Andonov Florijan
2018-11-01 00:18:53 +01:00
committed by Paul Happ
parent e5073f66ae
commit 6f05fd928c

View File

@ -1,6 +1,8 @@
---
title: Super Globals
---
## Super Globals
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/php/super-globals/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
@ -9,5 +11,22 @@ This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
## List of Super Globals and what are they
Super globals are variables defined in the core of PHP, and they are available in all scopes throughout the script. This means that you do not need to define them as **global $variable** .
These superglobal variables are:
$GLOBALS
$_SERVER
$_GET
$_POST
$_FILES
$_COOKIE
$_SESSION
$_REQUEST
$_ENV
They all have their use cases, but mostly to beginners _$_GET_ and _$_POST_ are the most used. **$_GET**_ Pulls data from the url, while **$_POST**_ pulls data from the post request. Both of these are arrays. **$_REQUEST**_ is a collection of GET and POST.
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->