Help for this page

Select Code to Download


  1. or download this
    $q = new CGI;
    print     $q->header,
    ...
    
  2. or download this
    $dbh = DBI->connect('dbi:ODBC:fax',$user, $passwd, 
    { RaiseError => 1, AutoCommit => 1 }) or die "Non riesco a connettermi
    +!!\n";
    $in=$dbh->prepare("INSERT INTO $tabella(NumPratica) VALUES ('3456337')
    +;");
    $in->execute();
    $dbh->disconnect();