我有问题。我该如何修复此错误:
Warning: mysqli::__construct(): Unexpected server respose while doing
caching_sha2 auth: 99 in C:\xampp\htdocs\conn.php on line 7
Warning: mysqli::__construct(): MySQL server has gone away in
C:\xampp\htdocs\conn.php on line 7
Warning: mysqli::__construct(): (HY000/2006): MySQL server has gone away
in C:\xampp\htdocs\conn.php on line 7
Connection failed: MySQL server has gone away
今天我安装了MySQL服务器。 到目前为止,我使用的是XAMPP中的MySQL。
我一直在寻找文档中的解决方案,但没有找到解决方案。
我在3300端口上使用服务器,因为3306被XAMPP阻止了
PHP脚本:
<?php
$servername = "localhost:3300";
$username = "selecter";
$password = "qaz123qaz123";
$conn = new mysqli($servername, $username, $password);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully";
?>
请帮帮我。