我的 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;
?>
错误:注意:未定义索引:第 8 行 /home/nitin/www/enzemble/text.php 中的密码 注意:未定义变量:第 9 行 /home/nitin/www/enzemble/text.php 中的电子邮件用户名密码
我没有在 php 中获取 html 表单值。这是令人惊讶的。我已经为此工作了很长时间。请帮忙。