1

ユーザーをデータベースに追加するための簡単な登録フォームを作成しています。コードは以下です。

<?php
include 'header.php';
$tag = randomString();
?>
<html>
<head>
<title>Register an Account</title>
</head>
<body>
<b>Register an account</b><br><br>
<form method="post" action="add_user.php?tag=<?echo $tag;?>">
Username: <br><input type="text" name="username" size=25/><br /><br>
Password: <br><input type="password" name="password" size=25/><br /><br>
Confirm Password: <br><input type="password" name="confirm" size=25/><br /><br>
Email Address: <br><input type="text" name="email" size=25/><br /><br><br>
Additional Info: <br><input type="text" name="info" size=50/><br>
<input type="submit" name="Submit" />
</form>
</body>
</html>

フォームはうまく機能しているようです。しかし、次のページでこの投稿データを読み込もうとすると、すべてのエントリが入力されていても、正しいエントリと正しくないエントリがあります。例えば:

echo mysql_real_escape_string(htmlentities($_POST['username'])); --> outputs what was in the info field
echo mysql_real_escape_string(htmlentities($_POST['password'])); --> output is what was entered in "confirm"
echo mysql_real_escape_string(htmlentities($_POST['confirm'])); --> no output
echo mysql_real_escape_string(htmlentities($_POST['email'])); --> email is outputted, this is correct. 
echo mysql_real_escape_string(htmlentities($_POST['info'])); --> No output. 

なぜこれが起こっているのか非常に混乱していますが、私は多くのフォームを書きましたが、そのような問題はありません。

編集: var_dump は次のとおりです (入力されたデータ: ユーザー名、Pass1、Pass2、email@address.com、および適切な順序での情報):

array(4) { ["username"]=> string(4) "info" ["password"]=> string(5) "Pass2" ["email"]=> string(17)     "email@address.com" ["Submit"]=> string(6) "Submit" }

EDIT2: ページ全体のコードを追加

add_user.php (未完了 -- 2 つのパスワードを比較しようとしたときに問題が発生しました。主に、自分が思っていたものを比較していなかったため、真とは評価されませんでした)

<?php
//var_dump($_POST);

echo mysql_real_escape_string(htmlentities($_POST['username'])); echo "<br>";
echo mysql_real_escape_string(htmlentities($_POST['password'])); echo "<br>";
echo mysql_real_escape_string(htmlentities($_POST['confirm'])); echo "<br>";
echo mysql_real_escape_string(htmlentities($_POST['email'])); echo "<br>";
echo mysql_real_escape_string(htmlentities($_POST['info'])); echo "<br>";

if ($_POST['password'] != $_POST['confirm']) {
die("Passwords do not match. Please go back and try again.");
}
$tag = $_GET['tag'];
?>
4

1 に答える 1

0

その中で、$_POSTは「confirm」と「info」の値ではありません。そのため、何も出力されません。

PHPの通知をオンに切り替えることをお勧めします。これは、すぐに通知されます。

私は考えることができませんが、あなたはフォームに間違って記入したと思います。「info」は「username」の値なので。

于 2011-07-30T11:31:40.677 に答える