假设用户提交反馈,之后我想将它们重定向到另一个位置。可以这样做吗?
header("Refresh: 4; url=$location");
header("Connection: close");
echo
"
Feedback successfully submitted.
<hr />
";
在重定向之前是否有其他方式显示信息?在这种情况下,我应该使用<meta http-equiv="refresh"
...
答案 0 :(得分:0)
我猜你的意思是这样的
http://zazeni.si/projekti/izrisitakoj/main/vprasanje_oddano
在我看来,你做得对,只需使用
<p>Thank you for submitting. If you're not redirected in 5 seconds, click <a href="redirect.php">here</a> </p>
<?php header( "refresh:5;url=redirect.php"); ?>