(1)$_SERVER 服务器的相关信息
(2)$_GET 接收用户通过url向服务器传的参数
$POST 接收用户通过http协议向服务器传递的参数
发送get请求
<a href="demo.php?user=name&password=123456">测试页面</a>
使用$_GET接收
print_r($_GET);
使用post发送请求
<form action="demo.php" method="post"> username:<input type="text" name="name" /> <br> age : <input type"text" name="age" /> <br> <input type="submit" name="sub" value="提交"> </form>
使用$_POST接收
print_r($_POST);
使用$_REQUEST可以接收get和post的请求的数据
(3)$_FILES
文件上传相关信息
(4)$_COOKIE
客户端保存相关信息
(5)$_SESSION
服务端保存相关信息
(6)$GLOBALS
包含以上所有超全局变量