0

我无法使用 mysqli 类登录数据库。

我得到下一个错误:

Warning: mysql_query(): Access denied for user 'www-data'@'localhost' (using password: NO) 

我有下一个代码:

$this->mysqlCon = new mysqli($siteConfig['db']['hostname'], $siteConfig['db']['username'], $siteConfig['db']['password'], $siteConfig['db']['database']);

var_dump()$siteConfig['db']回报:

array(4) {
  ["hostname"]=>
  string(9) "localhost"
  ["username"]=>
  string(4) "root"
  ["password"]=>
  string(*) "***Censored***"
  ["database"]=>
  string(*) "***Censored***"
}

我的 VPS 正在运行Debian 6 32bit

4

1 回答 1

1
Warning: mysql_query()
             ^---------------------- notice something? :)

你似乎混淆了你mysqlmysqli代码。

于 2012-07-22T10:15:07.763 回答