Help for this page

Select Code to Download


  1. or download this
    my $stmt = "SELECT DISTINCT scene, title  FROM catalog";
    my $sth = my $dbh->prepare($stmt) or die ...r";
    ...
    
    my $data   = $sth->fetchall_arrayref({});
    my $template -> param ( selscene => $data );
    
  2. or download this
    my $data   = $sth->fetchall_arrayref({});
    
    ...
    print $data->[1],"\n";    #can I even print it
    
    $template->param(selscene => $data)
    
  3. or download this
    <select name="scenes">
       <tmpl_loop name="selscene">
          <option value="<tmpl_var scene>"><tmpl_var title></option>
       </tmpl_loop>
    </select>