PHP Tutorial - PHP mysqli_stat() Function






Definition

The mysqli_stat() function returns the current system status.

Syntax

PHP mysqli_stat() Function has the following syntax.

mysqli_stat(connection);

Example

Get the current system status


<?php/*ww w  .j  a v a 2 s . c o  m*/
    $con=mysqli_connect("localhost","my_user","my_password","my_db");
    // Check connection
    if (mysqli_connect_errno($con)){
       echo "Failed to connect to MySQL: " . mysqli_connect_error();
    }
    
    echo "System status: ". mysqli_stat($con); 
    
    mysqli_close($con);
?>