Allo!
At 04:56 2007-09-14, you wrote:
>Hi,
>how can I capture the IP address of a user filling in a HTML form. The
>backend procesing is using Perl. I dont know what modules are installed
>by the ISP.
For the visitor IP:
$ENV{'REMOTE_ADDR'}
If you need to have a listing of all environenet variable do the following:
foreach $key (sort keys %ENV)
{print "$key: $ENV{$key}n" ;}
Not sure about the syntax, I use a different, but must work.
Good luck
Gilles B.
---
Webmasters helping webmasters
http://www.balour.org/
.