in reply to Environment Variable

It's server dependant - parse %ENV for complete list:
for (keys %ENV) { print "$_ = $ENV{$_}\n"; } # eg - for remote IP, use $ENV{'REMOTE_ADDR'}
cLive ;-)

Replies are listed 'Best First'.
Re^2: Environment Variable
by Anonymous Monk on Jul 13, 2005 at 14:39 UTC
    This is brilliant! Thanks so much!!!
Re^2: Environment Variable
by ikegami (Patriarch) on Jul 14, 2005 at 22:51 UTC
    While some are server-dependant (and even request-dependant), the CGI spec requires that certain variable be set.