in reply to HTTP/CGI Environmnet Variables
should give you all the information available. Why do you need to print it out some other way? As for the rest: In @keys[$n] = $ENV{$key};, the term @keys[$n] should likely be $keys[$n] (an array element not a slice with one entry), but those should be labeled *values*, not *keys*, shouldn't they?foreach $key(sort keys(%ENV)) { print "$key = $ENV{$key}<p>";}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: HTTP/CGI Environmnet Variables
by intranetman (Acolyte) on Mar 01, 2005 at 22:18 UTC |