$_GET[] 能接收 post提交过来的数据吗?
$_GET[] 能接收 post提交过来的数据吗?
$_GET[] 能接收 post提交过来的数据吗?
2017-01-12
喜欢看代码是吧?新建个html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form action="receive.php" method="post">
<input type="text" name="myinput" value="" />
<input type="submit" value="提交"/>
</form>
</body>
</html>
再新建个php receive.php
<?php
echo $_GET[myinput];
?>
结果无输出,客户端的get数据,服务端用post同样无输出,因为get和post数据位置不一样,一种是接在网址后面的,一种单发的,只有匹配才有输出。
举报