Super Globals Flashcards

1
Q

Say you have a variable in the global scope, how can you access it within another scope?

A

$GLOBALS[$var];

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can you access a variable through a post request and how about a get request?

A

$_POST[$var];

$_GET[$var];

How well did you know this?
1
Not at all
2
3
4
5
Perfectly