Help for this page

Select Code to Download


  1. or download this
    order allow,deny
    allow from all
    ...
     Options +ExecCGI
     SetHandler cgi-script
    </FilesMatch>
    
  2. or download this
    #!/usr/bin/perl -wT
    use strict;
    ...
    
    print "<p>Request_URI contained: " . join( ' ', map {"[$_]"} split '/'
    +, $ENV{REQUEST_URI}) . "</p>\n"; 
    print "$_ => $ENV{$_}<br />\n" for sort keys %ENV;