所以我认为我在WAMP和上帝的爱中取消了一些东西,我不知道哪个因为$ _POST不再起作用了。
我知道我的代码不是问题,因为它在事件发生之前一直在工作。
这里有一个场景:
if ($_POST) {
var_dump($_POST);
}
打印一个空数组
但如果我使用此代码
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
echo "here";
}
它成功打印。
我尝试使用$ _GET,但不能使用$ _POST。
我做错了什么? d:
编辑:表格
<form method="post" action="login.php">
<div style="width: 100%; text-align:center;">
<input id="username" name="username" type="text" placeholder="Username..." class="inputText" style="margin-bottom:5px;" />
<input id="password" name="password" type="password" placeholder="Password..." class="inputText" /><br /><br />
<input type="reset" value="Reset" class="button" />
<input type="submit" value="Login" class="button" />
</div>
</form>
编辑:我从你的所有评论中试试了我的运气,最终重新安装了我的WAMP并修复了它,但事实上我不知道是什么导致它让它更令人沮丧。多谢你们。快乐的编码!