Answers for "mysqli connect error"

PHP
0

php mysqli connect err0r

<?php
$link = mysqli_connect('localhost', 'fake_user', 'my_password', 'my_db');

if (!$link) {
    die('Connect Error: ' . mysqli_connect_error());
}
?>
  //The mysqli_connect_error() will return a list of connection error(s) if the connection to the db fails
Posted by: Guest on February-20-2020
0

mysqli connect error

<?php
$conn=mysqli_connect("localhost","username","password","database_name");
?>

This code will connect with database 'database_name' while $conn is connection name
Posted by: Guest on October-31-2020

Browse Popular Code Answers by Language