Help for this page

Select Code to Download


  1. or download this
    use DBI;
    use CGI ':standard';
    ...
                 "select * from mytable where myfield = ?",
                 'whatever');
    print header, start_html('Results'), $table->html;
    
  2. or download this
    $dbh->do("update table set blah = 'foo' where flurb = 'fleem'");