MySQLi - Real Query



Syntax

bool mysqli_real_query ( mysqli $link , string $query )

Definition and Usage

It is used to execute an SQL query.

Example

Try out following example −

<?php
   $servername = "localhost:3306";
   $username = "root";
   $password = "";
   $dbname = "TUTORIALS";
   $conn = new mysqli($servername, $username, $password, $dbname);
   
   if (!$conn->real_connect($servername, $username, $password, $dbname)) {
      die('Connect Error (' . mysqli_connect_errno() . ') '. mysqli_connect_error());
   }
   echo 'Success... ' . mysqli_get_host_info($conn) . "\n";
   $result = $conn->real_query("Select * From tutorials_auto");

   if($conn->connect_errno){
      echo $conn->connect_error;
   }
   return $result == true;
   
   $conn->close();
?>

The sample output of the above code should be like this −

Success... localhost:3306 via TCP/IP
mysqli_useful_functions.htm
Advertisements