Muito provavelmente, você tem um erro de conexão em mysqli_connect. Credenciais erradas ou MySQL está inativo.
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();
}