Help for this page

Select Code to Download


  1. or download this
        my $r = Apache->request;
    
  2. or download this
        <Location /perl>
        SetHandler perl-script
        PerlHandler Apache::Registry
        Options +ExecCGI
        </Location>
    
  3. or download this
        <Location /foo>
        SetHandler perl-script
        PerlHandler My::Foo
        </Location>
    
  4. or download this
        package My::Foo;
        use strict;
    ...
        }
    
        1;