eb240478
Luigi Serra
public room cards...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
$GLOBALS
$_SERVER
$_GET
$_POST
$_FILES
$_REQUEST
$_SESSION
$_ENV
$_COOKIE
$php_errormsg
$HTTP_RAW_POST_DATA
$http_response_header
$argc
$argv
----------------------------------------------------
[
["global", "$GLOBALS"],
["global", "$_SERVER"],
["global", "$_GET"],
["global", "$_POST"],
["global", "$_FILES"],
["global", "$_REQUEST"],
["global", "$_SESSION"],
["global", "$_ENV"],
["global", "$_COOKIE"],
["global", "$php_errormsg"],
["global", "$HTTP_RAW_POST_DATA"],
["global", "$http_response_header"],
["global", "$argc"],
["global", "$argv"]
]
----------------------------------------------------
Checks for superglobals.
|