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 Link to comment https://forums.phpfreaks.com/topic/103532-mysql-connect/ 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()); Link to comment https://forums.phpfreaks.com/topic/103532-mysql-connect/#findComment-530158 Share on other sites More sharing options...
zenag Posted April 30, 2008 Share Posted April 30, 2008 $server = "79.170.40.51:3306"; Link to comment https://forums.phpfreaks.com/topic/103532-mysql-connect/#findComment-530159 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.