如何从上传到不同域的单个数据库连接两个网站

时间:2015-02-20 13:16:58

标签: php mysql

我有两个域名,如

  1. XYZ
  2. ABC
  3. 在xyz中我有admin文件夹,我的主数据库也在xyz上传。现在我想从xyz数据库表中访问一些数据。我怎么能这样帮助我。

2 个答案:

答案 0 :(得分:0)

您可以在abc服务器上远程连接xyz数据库。如果您的数据库是mysql,那么您可以参考以下链接,了解如何远程连接MySQL数据库。

http://www.rackspace.com/knowledge_center/article/mysql-connect-to-your-database-remotely

Use the following configuration settings for connecting to your database

Host name = (use the xyz server IP address)
Database name = (xyz server database name)
Database username = (xyz database username)
Database password = (the password you entered for that database user on xyz)
MySQL Connection Port = 3306

答案 1 :(得分:0)

让我们说xyz网站有IP 127.0.0.1(我知道它的本地主机,但只是一个例子),网站abc的IP为127.0.0.2。

您必须在站点xyz的数据库中授予IP 127.0.0.2可以访问数据库的访问权限。

在网站abc上,您将需要IP 127.0.0.1而不是localhost。 e.g。

$con = mysqli_connect("127.0.0.1","user","password","db");