当前位置: 首页 > 知识库问答 >
问题:

警告:mysql_connect():拒绝访问用户'root'@'localhost'(使用密码:NO)[重复]

江航
2023-03-14

2)我正在尝试将html表单注册到数据库,但我得到了这样的警告:

警告:mysql_connect():拒绝访问用户'root'@'localhost'(使用密码:NO)

<?php 
    mysql_connect("localhost", "root", ""); 
    mysql_select_db("bookaride"); 
?>
/* Authentication type and info */ 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
// Authentication method (config, http or cookie based) 
$cfg['Servers'][$i]['user'] = 'root'; 
$cfg['Servers'][$i]['password'] = ''; 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['AllowNoPassword'] = true; 
$cfg['Lang'] = '';

共有1个答案

薛文斌
2023-03-14

打开您的Mysql控制台,如果您正在使用WAMP应该在这里(C:\WAMP\bin\Mysql\mysql5.6.17\bin)或类似的东西

打开控制台后,输入以下内容:

GRANT ALL PRIVILEGES ON bookaride TO 'root'@'%' WITH GRANT OPTION;

请尝试再次运行脚本

 类似资料: