我无法在 PHP5 中连接到 mysql5
我使用这段代码:
<?php
$link = mysql_connect('nibiru.zarea.net/sqladmin', 'czoctopus','*******');
if (!$link) {
die('<h1>Mysql error: ' . mysql_error() . '</h1>');
}
?>
这是回显:
Mysql 错误:php_network_getaddresses:getaddrinfo 失败:名称或服务未知
I use this code:
<?php
$link = mysql_connect('nibiru.zarea.net/sqladmin', 'czoctopus','*******');
if (!$link) {
die('<h1>Mysql error: ' . mysql_error() . '</h1>');
}
?>
this is echo:
Mysql error: php_network_getaddresses: getaddrinfo failed: Name or service not known
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这
不是有效的服务器地址。您可能只需要使用域(或者向您的提供商询问数据库服务器的地址)。
This
is not a valid server address. You probably need to use the domain only (or ask your provider for the address of the database server).