我正在使用以下代码从php应用程序连接到远程mysql 我正在使用WAMP服务器安装我的php应用程序,而在远程端也使用wamp服务器。
$con=mysql_connect('xxxx:xxxx:xxxx:xxxx','root','');
但是没有建立联系。 警告即将来临......
警告:mysql_connect()[function.mysql-connect]:[2002] php_network_getaddresses:getaddrinfo failed:没有这样的主机是已知的。 (尝试通过tcp:// 10:133连接)
请任何身体给我一些想法! 谢谢!
答案 0 :(得分:3)
点应该不是冒号,比如
$con=mysql_connect('xxxx.xxxx.xxxx.xxxx','root','');
//like
$con=mysql_connect('127.0.0.1','root','');
答案 1 :(得分:2)
在您的IP地址中使用点,而不是冒号。
答案 2 :(得分:1)
试试这个:
$con=mysql_connect('192.168.0.1','root','');
或者如果要指定端口:
$con=mysql_connect('192.168.0.1:3306','root','');