A
Anonymous
Guest
I want to connect to my database but it only works when I use localhost, if I try and use the ip it does not work.
this works:
$db = mysql_connect("localhost", "$user", "$password" );
this does not works:
$db = mysql_connect("66.66.66.66:3306", "$user", "$password" );
(66.66.66.66 is a fake ip of course)
any ideas... thanks
this works:
$db = mysql_connect("localhost", "$user", "$password" );
this does not works:
$db = mysql_connect("66.66.66.66:3306", "$user", "$password" );
(66.66.66.66 is a fake ip of course)
any ideas... thanks