在Php中的MySQL访问到在C-Panel中创建的数据库

时间:2012-10-27 22:45:22

标签: php mysql cpanel

基本上,我无法使用php网页连接到mysql数据库。  我使用向导在C-panel中创建了数据库 我这样连接

$db_host = "localhost"; //your host Database address

$db_username = "xxxx"; //your account username

$db_pass = "xxxxx"; //your account password

$db_name = "xxxxx"; //your database name

@mysql_connect("$db_host","$db_username","$db_pass") or die ("could not connect to     mysql");

@mysql_select_db("$db_name") or die ("no database");

但我的所有页面似乎都是触发“无法连接到mysql” 我的页面确实安装了wordpress,但我打算摆脱它,因为我自己创建我的网站。我只是感到困惑,为什么它无法连接,因为在Phpmyadmin(C-panel上的一个功能)它说数据库在localhost中。

1 个答案:

答案 0 :(得分:0)

在C-panel中,您需要添加数据库用户并为其分配某些角色,然后才能连接到数据库。