显示信息后重定向

时间:2011-11-11 19:55:50

标签: html user-interface redirect header

假设用户提交反馈,之后我想将它们重定向到另一个位置。可以这样做吗?

header("Refresh: 4; url=$location");
header("Connection: close");

echo
    "
    Feedback successfully submitted.

    <hr />
    ";

在重定向之前是否有其他方式显示信息?在这种情况下,我应该使用<meta http-equiv="refresh" ...

1 个答案:

答案 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");  ?>