在此处输入图像描述我正在尝试从 remotemysql.com 连接 replit.com(我正在使用的基于云的 IDE)和数据库。我只收到“HTTP ERROR 500”。我该如何解决?任何回复都可能有所帮助。谢谢。
这是我在 mysqli_connect.php 文件上的代码(我隐藏了用户名、数据库名和密码):
<?php
$host = "remotemysql.com";
$user = "xxxxxxxxx";
$pass = "xxxxxxxxx";
$db = "xxxxxxxxx";
$port = 3306;
//problem on this line below
$connection = mysqli_connect($host, $user, $pass, $db, $port);
if(mysqli_connect_errno()) {
die("Database connection failed: " . mysqli_connect_error() . " (" .mysqli_connect_errno() . ")" );
} else {
echo "connection made";
}
?>