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

PHP mysqli_error() Function

PHP MySQLi Reference PHP MySQLi Reference

Example

Return the last error description 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')"))
  {
  echo("Error description: " . mysqli_error($con));
  }

mysqli_close($con);
?>

Definition and Usage

The mysqli_error() function returns the last error description for the most recent function call, if any.


Syntax

mysqli_error(connection);

Parameter Description
connection Required. Specifies the MySQL connection to use

Technical Details

Return Value: Returns a string with the error description. "" if no error occurred
PHP Version: 5+

PHP MySQLi Reference PHP MySQLi Reference