Warning: mysqli_connect(): (HY000/1049): Unknown database 'art_gallery'
The database art_gallery
is correctly imported and username is root
, password is ``
<?php
$link=mysqli_connect("localhost","root","","art_gallery");
if(mysqli_connect_error())
{
echo "Connection error".mysqli_connect_error();
exit;
}