PHP mysqli_errno() Function

Definition

The mysqli_errno() function returns the last error code for the most recent function call.

Syntax

PHP mysqli_errno() Function has the following syntax.

mysqli_errno(connection);

Parameter

ParameterIs RequiredDescription
connectionRequired.MySQL connection

Return

It returns an error code value or Zero if no error occurred.

Example

Get the last error code for the most recent function call.


<?php//from   w  w  w . j  a  v a2  s .c  om
$con=mysqli_connect("localhost","my_user","my_password","my_db");

if (mysqli_connect_errno($con)){
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

// Perform a query, check for error
if (!mysqli_query($con,"INSERT INTO Persons (FirstName) VALUES ('Jack')")){
  echo("Errorcode: " . mysqli_errno($con));
}

mysqli_close($con);
?>




















Home »
  PHP Tutorial »
    Function reference »




PHP Array Functions
PHP Calendar Functions
PHP Class Functions
PHP Data Type Functions
PHP Date Functions
PHP File Functions
PHP Image Functions
PHP Math Functions
PHP MySQLi Functions
PHP SimpleXML Functions
PHP String Functions
PHP XML Functions
PHP Zip Functions