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