FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

PHP mysqli_error_list() Function

PHP MySQLi Reference PHP MySQLi Reference

Example

Return a list of errors for the most recent function call, if any:

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

// Perform a query, check for error
if (!mysqli_query($con,"INSERT INTO Persons (FirstName) VALUES ('Glenn')"))
  {
  print_r(mysqli_error_list($con));
  }

mysqli_close($con);
?>

Definition and Usage

The mysqli_error_list() function returns a list of errors for the most recent function call, if any.


Syntax

mysqli_error_list(connection);

Parameter Description
connection Required. Specifies the MySQL connection to use

Technical Details

Return Value: Returns a list of errors. Each as an associative array with errno (error code), error (error text), and sqlstate
PHP Version: 5.4+

PHP MySQLi Reference PHP MySQLi Reference