PHP 为什么只能接收到$_GET值而得不到$_POST?

发布于 2021-11-28 14:26:40 字数 1957 浏览 491 评论 1

addUser.php:
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
<h2>添加用户</h2>
<form action="doAction.php?act=addUser" method="post">
    <table border="1" cellspacing="0" cellpadding="0" bgcolor="#ABCDEF" width="50%">
        <tr>
            <td>用户名</td>
            <td><input type="text" name="user_name" id="" placeholder="请输入合法用户名" required="required"/></td>
        </tr>
        <tr>
            <td>密码</td>
            <td><input type="password" name="pass_word" id="" placeholder="请输入密码" required="required"/></td>
        </tr>
        <tr>
            <td>年龄</td>
            <td><input type="number" name="age" id="" min="1" max="150" placeholder="请输入年龄" required="required"/></td>
        </tr>
        <tr>
            <td colspan="2"><input type="submit" value="添加用户"/></td>
        </tr>
    </table>
</form>

</body>
</html>

doAction.php:

<?php
header("content-type:text/html;charset:utf-8");
$con = new mysqli('localhost','root','','test');
if($con->connect_errno){
    die($con->connect_error);
}
$con->set_charset('utf8');
$username=$_POST['user_name'];
$username=$con->escape_string($username);
$password=$_POST['pass_word'];
$age=$_POST['age'];
$act=$_GET['act'];
var_dump($_POST);
var_dump($_GET);



奇怪的是:在Windows是上运行正常,反而在Ubuntu没用。都是最新的XAMPP

Chrome抓包可以看见

post就是取不到值啊,求解



如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妖妓 2021-11-30 04:22:36

跨域了呗,统一成127.0.0.1看看  偶尔会出现127.0.0.1和localhost算跨域的情况··

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文