表单密码输入未注册为post变量

时间:2015-02-15 04:42:41

标签: php html html5

会感激一些帮助!出于某种原因,密码输入到表单字段:

<div>Confirm Password</div>
<input id="password2" name="password2" type="password" maxlength="100">

在将其作为POST变量抓取时,不在下面的php代码中注册:

$p2 = $_POST['password2'];

如果重要的话,上面的php代码在html表单之上......并且表单发布到update.php,这是这两段代码所在文件的名称。

1 个答案:

答案 0 :(得分:1)

应该是这样的

<form action="somewhere.php" method="post">
<input id="password2" name="password2" type="password" maxlength="100">
<input type="submit" name="submit">
</form>

在你的somewhere.php上,你可以查看

if(isset($_POST['submit'])){
$p2 = $_POST['password2'];
}else{echo "sorry form not submitted";}