Help for this page

Select Code to Download


  1. or download this
        $sth = $dbh->prepare ($stmt);
        $sth->execute();
    
  2. or download this
        $sth = $dbh->prepare ($stmt) or die $dbh->errstr;
        $sth->execute() or die $dbh->errstr;