Forum Moderators: coopster
Warning: mysql_connect(): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) in /home/1/e/erudi/www/classifieds_1_3/gorum/dbproperty.php on line 300
Mysql connection failed. Host: , Username:
not sure if this has anything to do with php, but any sugesstions appreciated.
function connectDb($host="",$user="",$pw="",$db="")
{
[strong] $ret = mysql_connect($host, $user, $pw);[/strong]
if (!$ret) {
$txt="Mysql connection failed. Host: $host, Username: $user";
handleError($txt);
}
$ret=mysql_select_db($db);
if (!$ret) {
$txt="Mysql select database failed. Database name: $db";
handleError($txt);
}
} line 300 in bold
any suggestions appreciated
kumar