我有两个域名,如
在xyz中我有admin文件夹,我的主数据库也在xyz上传。现在我想从xyz数据库表中访问一些数据。我怎么能这样帮助我。
答案 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");