burge124 Posted April 30, 2008 Share Posted April 30, 2008 hi i need to connect my pages to the database, here is an example of the connection... server host 79.170.40.51 port number 3306 username web15-ian password 1234567 ive tried creating a connection although its never connected any help please on solution code? thanks Quote Link to comment Share on other sites More sharing options...
zenag Posted April 30, 2008 Share Posted April 30, 2008 $server = "localhost:3306"; // this is the server address and port $username = "web15-ian"; // change this to your username $password = "1234567 "; $link = @mysql_connect ($server, $username, $password) or die (mysql_error()); Quote Link to comment Share on other sites More sharing options...
zenag Posted April 30, 2008 Share Posted April 30, 2008 $server = "79.170.40.51:3306"; 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.