52 / 61

Voorbeeld

package Apache::MijnHandler
use Apache::Constants qw(OK);

sub handler {
    my $r = shift;

    $r->send_http_header('text/plain');
    $r->print('voorbeeld');
    
    return OK;
}

1;