自分のコードが機能しない理由がわかりません。POSTS を 100 万回実行しましたが、今回はうまくいかないようです。
私のフォーム:
<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";
}
毎回「失敗」します。私は何を間違っていますか?私はそれを見ることができません。