1

我创建了一个表单,假设将三个变量传递到我的数据库中。我无法将变量提交到数据库,它给了我这个错误:

"Warning: mysqli_connect() [function.mysqli-connect]: (28000/1045): Access denied for user 'username'@'xx.xx.xx.xx' (using password: YES) in /home/simples2/public_html/insert.php on line 2

Failed to connect to MySQL: Access denied for user 'username'@'xx.xx.xx.xx' (using password: YES)

Warning: mysqli_query() expects parameter 1 to be mysqli, boolean given in /home/simples2/public_html/insert.php on line 13

Warning: mysqli_error() expects parameter 1 to be mysqli, boolean given in /home/simples2/public_html/insert.php on line 15
Error:"

我不确定这里需要做什么。我已经尽我最大的能力检查了拼写、密码和语法,但我做不到。

4

1 回答 1

1

为此,我将验证 MYSQL 数据库用户是否允许该用户名允许来自该 IP 地址的连接。似乎为“用户名”@localhost 设置了用户帐户或密码不正确

于 2013-07-17T03:11:26.703 回答