> Change your server address, to leave off the port number.
> 
> Any different?

$DBhost = "192.168.1.44";
$DBuser = "web";
$DBpwd  = "user";
$DBreg  = "registration";
$DBconf = "config";

# setup database handle and load configuration data

$dbh = mysql_connect($DBhost, $DBuser, $DBpwd)
   or die("Could not connect : " . mysql_error());

mysql_select_db($DBconf)
   or die("Could not select database");




Could not connect : Can't connect to MySQL server on '192.168.1.44' (2)


Same thing... What could be wrong here... Geez, this is starting to worry
me.


Thanks for your help,
Cameron

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to