标签: php post redirect
Okey dokey, 我有一个简单的附言,当它完成后,我只想回到正在发布的页面。
任何方式都可以这样做吗?
if($done) { //go to page }
答案 0 :(得分:29)
if ($done) { header("Location: /url/to/the/other/page"); exit; }