Hallo,
I remember that I read something about that the referer in special circumstances is not transferred by a browser.
I want to use the http_referer to block access to a downloader-file outside from my webpage like:
if (isset($HTTP_REFERER) && $HTTP_REFERER == "http://www.mydomain.org/dir/") {
//do something
} else {
exit;
}
will this work for everyone if the script is executed on the orig. location?