我正在制作一份注册表,并制作了一些简单的php来处理电子邮件作为测试:
Hello <?php echo $_POST["email"]; ?>
我正在使用post方法,尽管atom编辑器正在显示Hello,但它不显示电子邮件。
万一有人需要,这是我正在使用的html:
<form action="welcome.php" method="post">
<div class="container">
<h1>Register</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw"
required>
<label for="psw-repeat"><b>Repeat Password</b></label>
<input type="password" placeholder="Repeat Password" name="psw-
repeat"
required>
<hr>
<p>By creating an account you agree to our <a href="#">Terms &
Privacy</a>.</p>
<button type="submit" class="registerbtn">Register</button>
</div>
<div class="container signin">
<p>Already have an account? <a href="#">Sign in</a>.</p>
</div>
</form>
答案 0 :(得分:0)
此代码可以正常工作,请确保您在Hello <?php echo $_POST["email"]; ?>
中回显welcome.php
如果是,请确保已安装php。
答案 1 :(得分:0)
没有错误。如果将上面提供的php代码放在welcome.php中,然后填写表格,则Hello后会正确显示电子邮件。那里