I have a question regarding $HTTP_REFERER:
Here is what I want to do:
There is a site out there with a link to my site. When user click on the link, they will come to my site. My site is set up to allow people in ONLY if they come from this site, all other are denied access.
I was thinking along these lines:
if $http_referer == "http://www.xxx.com/page.html
then allow them in
else getout.
Now, reading through the manual and FAQ, it seems to me that the HTTP_REFERER variable may not be set if users use some "old browser".
Anyone know what these "old browsers" are?
IS there another or better way to do this?
Thanks