2013-06-03 55 views
1
I want to combine these: 

header("Location: index.php?msg=1"); 
header("Location: index.php#go-hear"); 


To look something like this: 
header("Location: index.php#go-hear?msg=1"); 

這可能嗎? 換句話說,我正在使用_GET並通過switch語句發送一個case來過濾。 但我也希望頁面使用錨標記重定向到頁面底部,而不是頂部。使用PHP - 如何在重定向中組合錨標記和GET變量

+4

錨雲底,之後的任何分析變量 – 2013-06-03 03:20:29

+1

噢,標題應該是完整的URL,而不是一個相對 – 2013-06-03 03:26:30

+2

你還應該包括'退出;'呼叫你的'頭之後( 'Location:'。$ URL)'否則PHP的其餘部分仍然執行。 – Tigger

回答

3

嘗試header("Location: index.php?msg=1#go-hear");