Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare( 'SELECT * FROM guestbook' );
    $sth->execute;
    ...
    my $template = HTML::Template->new(filename => 'table.tmpl');
    $template->param(TABLE_LOOP => \@ht_data);
    print $template->output();
    
  2. or download this
    <table class="user_form">
      <TMPL_LOOP NAME=TABLE_LOOP>
    ...
        </tr>
      </TMPL_LOOP>
    </table>