我将我的php页面与数据bsae连接但连接不是eshtablish并且出现警告。我的ussername,密码和主机名是正确的,我多次检查过。我无法理解为什么会出现这个问题。请...是下面给出的警告..
" Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'dewasdia'@'uni.universalworkplace.com' (using password: YES) in /home/dewasdia/public_html/main.php on line 7 fail "
php代码是
function connection()
{
mysql_connect('www.xxxx.com','xyz','xyz') or die (" fail");
mysql_select_db('dewasdia_dewas') or die(mysql_error());
}
答案 0 :(得分:0)
您可能在mysql.user
表中没有允许从脚本主机(uni.universalworkplace.com
)建立连接的条目。
您需要使用
之类的内容授予访问权限GRANT ALL ON dewasdia_dewas.*
TO 'dewasdia'@'uni.universalworkplace.com'
IDENTIFIED BY 'xyz';
FLUSH PRIVILEGES;