我尝试连接到phpMyAdmin数据库但遇到错误警告:mysqli :: mysqli():php_network_getaddresses:getaddrinfo failed:没有这样的主机。下面编码是我目前使用的编码。
$servername = "http://localhost:8080";
$username = "root";
$password = "";
$db = "dbLogin";
$conn = new mysqli($servername, $username, $password, $db);
if ($conn->connect_error) {
die("Connection failed: ".$conn->connect_error);
}
else {
echo "Connection success!";
}
当我运行我的系统时,它仍然会显示消息连接成功!,但是还有我提到的错误。
答案 0 :(得分:1)
从
替换服务器名称 $servername = "http://localhost:8080";
到
$servername = "localhost";