Help for this page

Select Code to Download


  1. or download this
    PerlRequire /home/ted/modperlhandler/Hello.pm
    <Location /time>
        SetHandler perl-script
        PerlResponseHandler Hello
    </Location>
    
  2. or download this
    package Hello
    use strict;
    
    ...
    }
    
    1;
    
  3. or download this
    #!perl
    use CGI;
    use CGI::Carp qw(fatalsToBrowser);
    ...
      print '</table>';
      $sth->finish;
    }