MySQLi with PHP
Below is the simple PHP script to connect database using mysqli
<?php
$link = mysqli_connect("127.0.0.1", "username", "password", "database_name");
if (!$link) {
echo "Error: Unable to connect to MySQL." . PHP_EOL;
echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL;
echo "Debugging error: " . mysqli_connect_error() . PHP_EOL;
exit;
}
echo "Success: A proper connection to MySQL was made! The my_db database is great." . PHP_EOL;
//echo "Host information: " . mysqli_get_host_info($link) . PHP_EOL;
$result = $link->query("SELECT * FROM `customer_entity` WHERE `entity_id`=1");
$row = $result->fetch_assoc();
print_r($row);
mysqli_close($link);
?>
Hope this is helpful.
