How can i solve this “Warning: mysqli_connect(): (HY000/1049): Unknown database” problem?

前端 未结 4 985
余生分开走
余生分开走 2020-12-06 04:02

I downloaded an Event management software and install wamp server. Everything is fine but when I try to sign up into the website, it is showing me this

( ! )          


        
4条回答
  •  时光取名叫无心
    2020-12-06 04:21

    New versions of WAMP seems to install both MySQL and MariaDB. And when I logged in through the phpMyAdmin, I saw that the MySQL is using the port 3308.


    So in my PHP code, instead of using just localhost for my database hostname, I added the port to it like this: localhost:3308 and it worked.

    $db = new mysqli('localhost:3308', 'root', 'password', 'db_name');
    

提交回复
热议问题