neutron has asked for the wisdom of the Perl Monks concerning the following question:
Help, as always, much appreciated.#!/perl/bin/perl -wT use CGI qw(:standard); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use strict; print header; print start_html( "Environment Variables" ); foreach my $key( sort( keys( %ENV ) ) ) { print "$key = $ENV( $key )\n"; } print end_html;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Why is "\n" displayed as space in browser?
by moritz (Cardinal) on Mar 16, 2009 at 22:45 UTC | |
Re: Why is "\n" displayed as space in browser?
by FunkyMonk (Chancellor) on Mar 16, 2009 at 23:13 UTC | |
Re: Why is "\n" displayed as space in browser?
by targetsmart (Curate) on Mar 17, 2009 at 06:06 UTC | |
Re: Why is "\n" displayed as space in browser?
by bradcathey (Prior) on Mar 17, 2009 at 02:59 UTC | |
by pobocks (Chaplain) on Mar 17, 2009 at 06:34 UTC |