标头()函数中的PHP POST数据

时间:2014-08-17 06:48:49

标签: php forms variables redirect post

我有一个表单,要求填写所有信息,我有一个脚本,检查字段是否填写,但我无法弄清楚如何让它重定向到POST表单数据来解释错误,有没有这样做的方法????

我知道可以使用GET数据执行此操作header("Location: index.php?e=1"); 但我想让URL简单地说:

https://foo.bar/index.php代替https://foo.bar/index.php?e=1

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.