Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Re: Apache::Filter and Apache::RegistryFilter

by thraxil (Prior)
on Nov 19, 2003 at 20:02 UTC ( [id://308392]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use CGI;
    ...
    foreach my $key (keys %ENV) {
        print "$key: $ENV{$key}<br />\n";
    }
    
  2. or download this
    #!/usr/bin/perl
    use Apache;
    ...
    foreach my $key (keys %ENV) {
        print "$key: $ENV{$key}<br />\n";
    }
    
  3. or download this
    if ($ENV{MOD_PERL}) {
        use Apache;
    ...
    } else {
        print $cgi->header();
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://308392]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-03-28 23:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found