我有一个表单,要求填写所有信息,我有一个脚本,检查字段是否填写,但我无法弄清楚如何让它重定向到POST表单数据来解释错误,有没有这样做的方法????
我知道可以使用GET数据执行此操作header("Location: index.php?e=1");
但我想让URL简单地说:
https://foo.bar/index.php
代替https://foo.bar/index.php?e=1
答案 0 :(得分:3)
在您的HTML中,您可以编写如下代码:
<input name="name" value="<? echo isset($_POST['name'])? $_POST['name']:"default_value";?>">
//Expecting you submission would be on same page where your have written your HTML content.