Home >Backend Development >PHP Tutorial >菜鸟求职,数据库连接问题,在线等

菜鸟求职,数据库连接问题,在线等

WBOY
WBOYOriginal
2016-06-23 14:06:34716browse

我写的实现注册功能的页面,在连接数据库吧数据插入数据库中时出现了下面的问题,错误提示为:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in F:\wamp\www\biyesheji\html\reg_chk.php on line 18

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in F:\wamp\www\biyesheji\html\reg_chk.php on line 18
我检查了数据库名,数据表名,及密码(为空)都正确,但我的数据库用户名为root,为什么错误提示中会出现ODBC,那位大牛帮帮我吧,都纠结一天了,谢谢谢……


回复讨论(解决方案)

检查数据库连接代码中用户名和密码是否写错

跟你的ODBC提示没关系,它不是提示你没有密码了吗,你需要给你的mysql账户创建一个密码

mysql>set password =password('你的密码');mysql>flush privileges;

我的几个页面没有密码也可以运行呀,就这个出问题了,数据库代码中用户名,密码没有错

你的数据库连接代码加@了吗
@mysql_connect(self::$dbhost,self::$dbuser,self::$dbpassword);
@mysql_select_db(self::$dbname);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn