Help for this page

Select Code to Download


  1. or download this
    select
    filename
    from $database_table
    where filename like '$filename%.html'
    order by filename desc
    
  2. or download this
    sub Do_SQL2 {
        my( $sql ) = @_;
        $sth = $dbh->prepare( $sql );
        $sth->execute();
    }
    
  3. or download this
    Do_SQL2($SQL);