0

我在一个不提交任何内容的新项目上有一个简单的登录表单。如果我var_dump$_POST数据是空的。如果我echo $_SERVER['REQUEST_METHOD']打印 GET。如果我var_dump $_GET也是空的。不知道怎么回事,以前没见过。有人有想法么?

HTML:

<div id="login">
<div class="title">Sign In</div>
    <form id="crewlogin" method="POST" action="auth/auth.php">
        <input id="acc_number" name="acc_number" type="number" placeholder="Acc Number">
    <input id="password" name="password" type="password" placeholder="Password">
    <input type="submit" name="submit" value="Sign In">
</form>

auth.php (目前只是一些调试代码,试图弄清楚发生了什么。

<?php
echo $_SERVER['REQUEST_METHOD'];
echo "<pre>";
var_dump($_POST);
var_dump($_GET);
?>

产生:

GET

array(0) {

}

array(0) {

}
4

0 回答 0