おそらく、mysqli_connectに接続エラーがあります。間違った資格情報またはMySQLがダウンしています。
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
//you need to exit the script, if there is an error
exit();
}
おそらく、mysqli_connectに接続エラーがあります。間違った資格情報またはMySQLがダウンしています。
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
//you need to exit the script, if there is an error
exit();
}