|
mysqli::$errormysqli_errorReturns a string description of the last error BeschreibungObjektorientierter Stil string$mysqli->error;
Prozeduraler Stil
string mysqli_error
( mysqli
$link
)Returns the last error message for the most recent MySQLi function call that can succeed or fail. Parameter-Liste
RückgabewerteA string that describes the error. An empty string if no error occurred. BeispieleBeispiel #1 $mysqli->error example Objektorientierter Stil
<?phpProzeduraler Stil
<?phpDie obigen Bespiele erzeugen folgende Ausgabe: Errormessage: Unknown system variable 'a' Siehe auch
|