I'm using HTTP_REFERER to get the users last referred web page. By this method they are deferred a different way depending on where they came from. This works great in Netscape 7,6,4, but I can't get it at all to work on Internet Explorer 6 and I've lowered all the security setting on IE 6 options. It bascially returns NULL when a link is clicked on, which it's only suppose to return NULL if they type the url in or go from a bookmark.
Does this environment variable have a probelm in IE 6.
My code is just this
$refer = $ENV{'HTTP_REFERER'};
if ($refer eq "http://www.isu.edu") {
#do process
}else{
#do something else
}