After hosting, i get this error:"Can't connect to MySQL server on 'localhost' (10061)"
The code was working fine in my computer.
I have hosted it in windows platform and i am using mysql and php.
Here is my code for db connection
$connection = mysql_connect(localhost,uname,pword) or die (mysql_error());
$db = mysql_select_db($databaseName, $connection);
if (!$db) {
print "error selecting db--" . mysql_error() . "--" ;
}
Any help will be appreciated.