Hiểu sâu về mysqli_errno(connection), mysqli_error(connection) (ok)
Hàm errno / mysqli_errno () trả về mã lỗi cuối cùng cho lệnh gọi hàm gần đây nhất, nếu có.
https://www.w3schools.com/php/func_mysqli_errno.asp
Hàm error / mysqli_error () trả về mô tả lỗi cuối cùng cho lệnh gọi hàm gần đây nhất, nếu có.
https://www.w3schools.com/php/func_mysqli_error.asp
<?php
$con = mysqli_connect("localhost", "root", "mysql", "ticket");
// Perform a query, check for error
if (!mysqli_query($con, "INSERT INTO Persons (FirstName) VALUES ('Glenn')")) {
echo ("Errorcode: " . mysqli_errno($con));
}
?>
<br>
<?php
// Perform a query, check for error
if (!mysqli_query($con,"INSERT INTO Persons (FirstName) VALUES ('Glenn')")) {
echo("Error description: " . mysqli_error($con));
}
?>
// Result
Errorcode: 1146
Error description: Table 'ticket.persons' doesn't exist
PreviousHoàn thiện xây dựng function, select && function renderStatement 9.2(ok)NextXây dựng function getMicrotime (ok) 9.3
Last updated
Was this helpful?