我'我将html表单发布到php脚本contact.php并进行其他验证和发送电子邮件。
我的问题 让我们假设他们的php脚本中出现错误contact.php所以我会使用
header("Locations: /contact-us.php?status=error");
如何在错误发生后预先填写用户输入的字段值?
HTML表单
<form action="/forms/contact.php" method="post">
<input type="hidden" name="wipit" id="wipit" value=""/>
<input type="text" id="name" name="name"/>
<input type="text" id="email" name="email"/>
<input type="text" id="phone" name="phone"/>
<textarea id="message" name="message"></textarea>
<button type="submit">Send Message</button>
</form>
PHP脚本
if( isset($_POST["wipit"]) and trim($_POST["wipit"]) == ""){
/* Other Validations goes here */
}