Hi,
I want to establish remote database connection. I have detail of database, user name and password. I tried to create a remote connection but it not connected to remote server.
For example my website name is "http://test.com" and another website name is "http://remotesite.com". I want to fetch data of http://remotesite.com from http://test.com. I have followed following steps:
1. Firstly login at http://remotesite.com control panel and click on remote database icon and enter http://test.com and its ip information.
2. I make a connection in http://test.com to connect with http://remotesite.com. I have used following tricks.
(a). mysql_connect("http://remotesite.com","username","password");
mysql_select_db("database_name");
(b). mysql_connect("http://remotesite.com:portname","username","password");
mysql_select_db("database_name");
©. mysql_connect("IP Address:portname","username","password");
mysql_select_db("database_name");
(d). mysql_connect("IP Address","username","password");
mysql_select_db("database_name");
But it is not connect with remote database. It means not connect with http://remotesite.com database.
Any on can help me in this regards.
Thanks,