I would like to track the link that a user followed to reach my website just like google analytic does?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
Above regular expression match only
Write your own Regex. Hope this helps you. Thank you. |
|||
|
|
|
Unless you have a relationship with the other website and they allow you to add tracking detail to the link, you cannot reliably get this information. You can get referrer information from the HTTP request headers but they are not completely reliable. |
|||
|
|
You can check the $_SERVER['HTTP_REFERER'] value, it will contain the URL the user clicked in order to reach your page. |
|||
|
|
|
You could use the 'HTTP_REFERER' attribute of the $_SERVER array but they're not 100% reliable as John Conde said |
|||
|
|
$_SERVER['HTTP_REFERER']– Positive Jun 26 '12 at 12:45