Help for this page

Select Code to Download


  1. or download this
    use CGI ':all';
    ##    Starting Frameset Definition    
    ...
            ),
        end_html;
    }
    
  2. or download this
    ##    Write a message to the log area    
    sub write_log {
    ...
            pre(join "\n", @$messages),
            end_html;
    }
    
  3. or download this
    ##    Write content to the main page area    
    sub write_content {
    ...
            join "\n", @$html,
            end_html;
    }
    
  4. or download this
    my $run = param("run");
    if ($run eq 'log') {
    ...
        write_content("running...");
        write_log("foo");
    }