我有一个用C#编写的应用程序,它确实与数据库连接。
这是我得到的错误:
警告:mysql_connect()[function.mysql-connect]:第15行(php文件)中用户'username'@'localhost'(使用密码:YES)拒绝访问 无法连接:用户'用户名'@'localhost'拒绝访问(使用密码:是)
这是我的代码:
$mysql = mysql_connect("localhost", "username", "password");
if (!$mysql) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
我从这个例子中得到了这个例子:
http://php.net/manual/en/function.mysql-connect.php
我做错了什么?
答案 0 :(得分:1)
您在mysql中的用户名可能不是“用户名”,因为您的密码不是“密码”。请将其更改为
$mysql = mysql_connect("localhost", $username, $password);
其中$username
随您的db用户名变化而$password
随您的db密码而变化。
使用MySQLi
代替mysql_
函数也是件好事。