我努力与mysql建立连接,到目前为止我最终遇到了这个错误:
Warning: mysqli_connect(): (HY000/1045): Access denied for user 'dev'@'localhost' (using password: YES) in D:\Programs\Xamp\htdocs\series\dynamic\AtomCMS\setup.php on line 5
Could not connect because: Access denied for user 'dev'@'localhost' (using password: YES)
我刚刚开始开发一个新的基于Web的系统,这是我用来连接数据库的代码。任何帮助表示赞赏。
$dbc = mysqli_connect('localhost','dev','123','pouya')OR die('Could not connect because: '.mysqli_connect_error());
此致
答案 0 :(得分:0)
您需要确保dev用户存在,并且他们被授予对pouya的访问权限。
答案 1 :(得分:0)
如果您正在使用XAMPP,请使用
[localhost / phpmyadmin]打开phpmyadmin界面
1)选择要访问的数据库。右边有一个选项,名为“权限”。
2)您需要检查用户是否存在。如果没有创建用户dev。如果用户存在,请尝试重新创建,因为您可能使用了错误的密码。