我正在构建一个简单的表单脚本,用于收集用户电子邮件并返回 PIN。
输入位于下面的标准 HTML 中:
<p>
<form class="form-inline" role="form" method="POST">
<div class="form-group">
<label class="sr-only" for="srEmail">Email address</label>
<input type="email" name="srEmail" class="form-control input-lg" id="srEmail" placeholder="Enter email">
</div>
<button type="submit" name="srSubmit" class="btn btn-default btn-lg">Generate PIN</button>
</form>
</p>
我有以下if
语句检查数据库以查看电子邮件是否已存在,以及用户是否需要 PIN 提醒。
if($num_rows != 0) {//if email found in table
?>
Email already registered, would you like a PIN reminder?
<form method="POST" action="">
<input type="submit" name="srSend" value="Click here to get pin reminder" />
<input type="hidden" name="srEmail" value="<?php echo strtolower($email);?>" />
</form>
<?php
exit;
}
目前,这会将结果作为新页面返回给用户;如何将它放在正文页面的实际 HTML 中,以便它实际上会出现在新<p>
元素中的原始表单输入下方?