Help for this page

Select Code to Download


  1. or download this
    #mod_perl test
    LoadModule perl_module /usr/local/libexec/apache22/mod_perl.so
    ...
        PerlHandler test1::sample
    </Directory>
    
  2. or download this
    package test1::sample;
    use strict;
    ...
    }
    
    1;