私のHTMLコード:
<form class="well" name="login" action="text.php" method="post" >
<input type="text" class="span3" id="username" name"username" placeholder="Enter your valid email">
<input type="text" class="span3" id="password" name"password" placeholder="Enter your password">
<button type="submit" class="btn" >Enzemble </button>
</form>
<h2>New User? ... Register</h2>
<form class="well" name="register" action="register.php" method="post" >
<input type="text" class="span3" id="email" name="email" placeholder="Enter your valid email" onBlur="emailValidation()">
<button type="submit" class="btn">Enter Enzemble!</button>
</form>
ボトムフォームはうまく機能します。
一番上のコードは「未定義のインデックス」通知を表示し、text.php のユーザー名とパスワードの値を読み取らない text.php コード:
<?php
if (isset($email)) $email=$_POST["username"];
if (isset($password)) $password=$_POST["pasword"];
echo "username " . $email . "password " . $password;
?>
エラー: Notice: Undefined index: password in /home/nitin/www/enzemble/text.php on line 8 Notice: Undefined variable: email in /home/nitin/www/enzemble/text.php on line 9 username password
PHP で HTML フォームの値を取得できません。これは驚くべきことです。私は長い間それに取り組んでいます。助けてください。