Hostgator远程访问本地php文件中的数据库

时间:2016-02-29 07:57:10

标签: php mysql database remote-access

我目前正在使用HostGator,但问题是我无法使用我的localhost PHP文件连接到我的在线数据库(即HostGator)。我希望如果我有互联网连接,我将连接到我的在线数据库,但如果没有,我将连接到我的离线localhost数据库。这是我的代码:

$checknet = @fsockopen("www.mysite.com", 80);

if(isset($checknet)) {
    mysql_connect('mysite.com OR ip of mysite','username','password');
    mysql_select_db('db');
} else {
    mysql_connect('localhost','root','');
    mysql_select_db('db');
}

此外,我已将我的IP地址添加到数据库的访问白名单中。但是,从远程系统访问数据库仍然无法正常工作。

1 个答案:

答案 0 :(得分:1)

您必须将公共IP地址列入白名单。

  

a)Google"什么是我的IP"

     

b)按照this link上的教程。