我很困惑为什么我的代码不起作用。我已经发布了一百万次,但这次它似乎不起作用。
我的表格:
<form method="post" name="form" id="form" enctype="text/plain" action="../posts/">
<fieldset id="inputs" style="text-align: center;">
<input id="password" type="password" name="password" placeholder="enter password" required />Press enter to submit
</fieldset>
</form>
我用于检索的 PHP 代码:
if(isset($_POST['password'])){
echo "success";
}
else{
echo "fail";
}
我每次都“失败”。我究竟做错了什么?我只是看不到它。