I am using $_SERVER['HTTP_REFERER']; to get the referer Url. It works as expected until the user clicks another page and the referer changes to the last page.
How do I store the original referring Url?
|
I am using How do I store the original referring Url? |
|||
|
|
|
Store it either in a cookie (if it's acceptable for your situation), or in a session variable.
|
|||||||
|
|
And don't forget to escape |
|||||||||||
|
|
As Johnathan Suggested, you would either want to save it in a cookie or a session. The easier way would be to use a Session variable.
Put that at the top of the page, and you will always be able to access the first referer that the site visitor was directed by. |
|||||
|