in reply to Re: Environment Variables
in thread Environment Variables

Would also be helpful to see what key has what value :)
print "Content-Type: text/html\n\n"; foreach (keys %ENV) { print "$_ => $ENV{$_} <BR>\n"; }
'course Data::Dumper is your friend....
use Data::Dumper; print "Content-Type: text/plain\n\n"; print Dumper \%ENV;

/\/\averick
perl -l -e "eval pack('h*','072796e6470272f2c5f2c5166756279636b672');"

Replies are listed 'Best First'.
Data::Dumper
by Kevman (Pilgrim) on Aug 18, 2001 at 12:54 UTC

    Of course you should remember to remove Data::Dumper afterwards... I'm told it is quite heavy on the processing

    Although I confess I've never used it :)

    Kevman

    Sorry, Apparently its not heavy on processing, just worth removing because of its actual size!!! (1000 lines)