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 Quote Link to comment 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] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.