THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP mysqli_get_host_info() Function

PHP MySQLi Reference PHP MySQLi Reference

Example

Return the MySQL server hostname and connection type:

<?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();
  }

echo mysqli_get_host_info($con);

mysqli_close($con);
?>

Definition and Usage

The mysqli_get_host_info() function returns the MySQL server hostname and the connection type.


Syntax

mysqli_get_host_info(connection);

Parameter Description
connection Required. Specifies the MySQL connection to use

Technical Details

Return Value: Returns a string that represents the MySQL server hostname and the connection type
PHP Version: 5+

PHP MySQLi Reference PHP MySQLi Reference