Help for this page

Select Code to Download


  1. or download this
    sub greet {
        my $name = shift;
    ...
    }
    
    greet('dev2000');
    
  2. or download this
    $_[0]->send_http_header('text/plain');
    $_[0]->print("mod_perl rules!\n");
    
  3. or download this
    my $r = shift;
    ...
    
  4. or download this
    package Some::URL::Based::Package::Name;use Apache qw(exit);sub handle
    +r {
    #line 1 script.pl
    ...
    ...
    
    }