Help for this page

Select Code to Download


  1. or download this
    use strict;
    use CGI; # or CGI::Simple
    ...
    my $rm = $q->param('rm');
    eval "require $dispatch{$rm}" or die "runmode handler not found";
    $dispatch{$rm}->handler($q);
    
  2. or download this
    sub handler
    {
    ...
        # do what ever runmode requires
        # return html output
    }