我该如何解决这个“警告:mysqli_connect():(HY000/1049):未知数据库"?问题?

How can i solve this quot;Warning: mysqli_connect(): (HY000/1049): Unknown databasequot; problem?(我该如何解决这个“警告:mysqli_connect():(HY000/1049):未知数据库?问题?)
本文介绍了我该如何解决这个“警告:mysqli_connect():(HY000/1049):未知数据库"?问题?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我下载了一个事件管理软件并安装了 wamp 服务器.一切都很好,但是当我尝试注册该网站时,它向我显示了这个

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:wamp64wwwEmspconnection.php on line 2

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

推荐答案

WAMP 的新版本似乎同时安装了 MySQL 和 MariaDB.而当我通过phpMyAdmin登录时,我看到MySQL使用的是3308端口.

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.

因此,在我的 PHP 代码中,我没有仅使用 localhost 作为我的数据库主机名,而是像这样添加了端口:localhost: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');

这篇关于我该如何解决这个“警告:mysqli_connect():(HY000/1049):未知数据库"?问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Warning: mysqli_query() expects at least 2 parameters, 1 given. What?(警告:mysqli_query() 需要至少 2 个参数,1 个给定.什么?)
INSERT query produces quot;Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean givenquot;(INSERT 查询产生“警告:mysqli_num_rows() 期望参数 1 为 mysqli_result,给出布尔值;)
prepared statements - are they necessary(准备好的陈述 - 它们是否必要)
Do I need to escape my variables if I use MySQLi prepared statements?(如果我使用 MySQLi 准备好的语句,是否需要转义我的变量?)
Properly Escaping with MySQLI | query over prepared statements(使用 MySQLI 正确转义 |查询准备好的语句)
Is it possible to use mysqli_fetch_object with a prepared statement(是否可以将 mysqli_fetch_object 与准备好的语句一起使用)