0

I have this problem where i already have created a database, but whenever I run using a php code, it keeps showing this error. Im using XAMPP, to run php and mysql.

Warning: mysqli_connect(): (HY000/1049): Unknown database 'winestore' in /Applications/XAMPP/xamppfiles/htdocs/phpproject/search.php on line 4 Database Connection Failed

Here's the code

  $connection = mysqli_connect('localhost', 'root', '', 'winestore');

  if (!$connection){
      die("Database Connection Failed" . mysql_error());
  } else {
    echo "Awesome";
  }

Heres the picture of my mysql database

enter image description here

Clearly in the picture that winestore database has been created, I have no idea what is the problem.

sinusGob
  • 4,053
  • 12
  • 46
  • 82

0 Answers0