slancasterfreak Posted April 1, 2006 Share Posted April 1, 2006 I have connected to my MySQL database before using:$db_connect=mysql_connect("localhost","dogbones","jdhkjn7676") or die ("Could not connect to database");mysql_select_db("$db") or die ("Could not select database");before, but what if I want to connect to it from another website, would I do something like:$db_connect=mysql_connect("http://www.thisother.com","dogbones","jdhkjn7676") or die ("Could not connect to database");mysql_select_db("$db") or die ("Could not select database");Would that work, or do I need some "port" or "socket" thing or numerical IP address in there or what?Thanks in advance!!!Sallywww.family-gathering.org Link to comment https://forums.phpfreaks.com/topic/6341-connect-to-mysql-on-one-server-from-another/ Share on other sites More sharing options...
wildteen88 Posted April 1, 2006 Share Posted April 1, 2006 To connect to a remote server you will need either the IP address of the server of the domain name of the site the server is installed on aswell as the a port number which is 3306 by defualt. SO i order to connect to a remote mysql server you'll do this:[code]mysql_connect("example.com:3306", "userName", "passWord")[/code] Link to comment https://forums.phpfreaks.com/topic/6341-connect-to-mysql-on-one-server-from-another/#findComment-22914 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.