Perl Get IP How To
Last Updated 9/3/2010
Get the visitor's IP address in Perl
Whenever a browser sends a request for a page, it also sends a number of other headers to the script, containing information such as the browser type. It also includes information such as the visitors IP address.
The following Perl script will display the visitor’s IP:
$ENV{'REMOTE_ADDR'}
To find sample programming code and tutorials how to get the visitor's IP address in ASP, ASP.NET, C#, VB.NET, PHP, JAVA and JavaScript check here:




