> I was hoping someone would be able to give me a clue how I could find the
> referer IP. If I use the Environment HTTP_REFERER, it will work in IE, but
> not in Netscape.
For some people this isn't an option (CGI.pm isn't available), but it is one that
works on all browsers (I have a site that I
constantly must test using IE, Netscape, and Opera to ensure compatibility).
<perl>
use CGI; # for my scripts I usually do this instead: "use CGI qw(:standard
escapeHTML);"
#It's just more efficient for me handling incoming data
$IPAddr = remote_host();
</perl>
When doing stuff over the web, I can't stress how useful CGI.pm is! If you can use
it, USE IT! :) I swear by it so much. Anyways,
I hope that helped, and best of luck in the project you're working on.
Joe Schulman