in reply to HTTP Variables In A Hash

If you're just looking for the Environmental variables you can do something like so...

my ($key, $value); while (($key, $value) = each %ENV) { print "$key = $value\n"; # or do whatever here }