Help for this page

Select Code to Download


  1. or download this
    use HTML::Template();
    use HTML::FillInForm();
    ...
    
    print $fif->fill(scalarref => \$template->output(), 
                     fobject   => $query);
    
  2. or download this
    my $html = $template->output();
    print $fif->fill(scalarref => \$html, 
                     fobject   => $query);