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

萝らか妹 提交于 2020-06-06 06:48:43

问题


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

( ! ) Warning: mysqli_connect(): (HY000/1049): Unknown database 'eventmanagmnt' in C:\wamp64\www\Emsp\connection.php on line 2

Call Stack
#   Time    Memory  Function    Location
1   0.0507  403176  {main}( )   ...\Login.php:0
2   0.1265  404264  include( 'C:\wamp64\www\Emsp\connection.php' )  ...\Login.php:2
3   0.1266  404264  mysqli_connect ( )  ...\connection.php:2


回答1:


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

If you are very sure you have created the database, then go to your connect file and add the port (3308) to your host variable [private $host = "localhost:3308";]. It's worked for me.




回答2:


In your connection.php line 2 verify your credentials if they're correct for your localhost.

mysqli_connect("localhost","your_username","your_password","your_database_name");

When we download such a project we first have to check the connection for the database. If you could provide me with your php version and a snippet from your connection.php file.




回答3:


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.

Hope it helps.




回答4:


For me this worked:

If you are using wamp 3.1.9 the problem is you created the database using MariaDB. Try to create or import the database using Mysql selection as the server choice it will connect.



来源:https://stackoverflow.com/questions/55878304/how-can-i-solve-this-warning-mysqli-connect-hy000-1049-unknown-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!