Help for this page

Select Code to Download


  1. or download this
       my @search = qw/%this% %that%/;
       my $sql = "select something from table where column1 like ? or colu
    +mn2 like ?";
       my $sth = $dbh->prepare( $sql );
       $sth->execute( @search );
    
  2. or download this
    my $left_col = '';
    for my $table_row ( @$table_ref ) {
    ...
        }
    }
    $page .= table( {-border => 0, width=> 550}, \@rows);