PHP脚本完成后如何导航到另一个页面?

时间:2011-01-10 04:30:22

标签: php post redirect

Okey dokey, 我有一个简单的附言,当它完成后,我只想回到正在发布的页面。

任何方式都可以这样做吗?

if($done)
    {
        //go to page
    }

1 个答案:

答案 0 :(得分:29)

if ($done)
{
    header("Location: /url/to/the/other/page");
    exit;
}