Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQLi PHP:Überprüfen Sie, ob die SQL INSERT-Abfrage mit MySQLi vollständig erfolgreich war

Aus dem PHP-Handbuch auf mysqli_stmt::execute :

if ($stmt->execute()) { // exactly like this!
    $success = true;
}

Du machst es richtig... Was ist dein Dilemma?