frost20 Posted June 8, 2009 Share Posted June 8, 2009 Hi people, Is there a php variable that tell you from where the user have come from ? I would like to get the URL he was to get on my site for example. Thanks Quote Link to comment Share on other sites More sharing options...
MadTechie Posted June 8, 2009 Share Posted June 8, 2009 its called HTTP_REFERER but its set via the browser so isn't idea but it works! here some common stuff $referrer = $_SERVER['HTTP_REFERER']; $browser = $_SERVER['HTTP_USER_AGENT']; $ipAddress = $_SERVER['REMOTE_ADDR']; print "Referrer = " . $referrer . "<BR>"; print "Browser = " . $browser . "<BR>"; print "IP Adress = " . $ipAddress; Quote Link to comment Share on other sites More sharing options...
MadTechie Posted June 9, 2009 Share Posted June 9, 2009 Your welcome Quote Link to comment Share on other sites More sharing options...
frost20 Posted June 11, 2009 Author Share Posted June 11, 2009 Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.