为什么我无法连接外部服务器上的数据库?

时间:2012-03-07 14:43:18

标签: php mysqli

我的问题是我无法连接其他服务器上的数据库。 当我尝试通过控制台连接时,我得到错误2003(无法与服务器连接)

我需要这样做,因为我需要做一个连接这个数据库的脚本php。 当我做脚本时,我得到同样的错误。

$this->_connec = mysql_connect(self::SERVER, self::USER, self::PASS, TRUE);
if(!$this->_connec){
    throw new Exception("Can't connect to Server");
}
$db = mysql_select_db(self::DB, $this->_connec);
if(!$db){
    throw new Exception("Can't selected DB");
}

其他信息:user:username,pass:passname,server:192.168.0.0,phpmyadmin:192.168.0.0/dbadmin

如何连接数据库?谢谢:D

0 个答案:

没有答案