Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use Data::Dumper;
    ...
    print "\n"; # The shortest CGI header possible,
                # the server will assume text/plain.
    print Dumper \%ENV;
    
  2. or download this
    #!/usr/bin/perl -w
    print map "\n$_ => $ENV{$_}", keys %ENV;