【CTF】simple HTTP method

GET[] 与 POST[] 的区别:

GET方式会将表单中的数据以URL字符串的形式发送给服务器
将test.php以GET方式提交,浏览器地址栏会显示
http://localhost/test.php?key1=value1&key2=value2
以”?”开头的字符串称为URL字符串

则$GET[“key1”]=value1

​ $GET[“key2”]=value2

将test.php以POST方式提交,浏览器地址栏会显示
http://localhost/test.php