自從1小時以來,我正在爲這種簡單的代碼安寧而努力。 當我在表單提交後進行瀏覽器刷新時,就會出現這個問題。 Chrome瀏覽器想要重新提交表單。其他瀏覽器像預期的那樣工作。表格提交後的Chrome重定向
有一種解決方法/黑客工具,在鍍鉻的作品?
<?php
// file: test.php
if(isset($_POST['test'])){
header('Location: test.php');
exit;
}
?>
<form method="post">
<input type="hidden" name="test" value="1">
<input type="submit" value="Send">
</form>
嘗試在新標籤中打開該網頁。 – 2013-02-25 19:06:49
echo「」; – skrilled 2013-02-25 19:07:08
這是在你的頁面頂部?在設置標題之前是否發送過任何內容? – Ibu 2013-02-25 19:07:13