【发布时间】:2023-03-28 23:39:01
【问题描述】:
我正在尝试使用 php 连接到 mysql 服务器,但它给出了以下错误
Connection failed: The server requested authentication method unknown to the client
mysql服务器版本为8.0.12,php版本为7.2.9。 我的代码连接到 mysql 服务器
<?php
$servername = "127.0.0.1";
$username = "root";
$password = "mypassword";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>
在here 之前已经提出过这个问题,但该解决方案对我不起作用,所以我再次问这个问题。 谢谢
编辑:我现在重新安装了 php,它为相同的代码提供了以下内容
This page isn’t working
127.0.0.1 is currently unable to handle this request.
HTTP ERROR 500
【问题讨论】:
-
我还没有安装 phpMyAdmin @ChrisLear
-
不,但上下文看起来非常适用