Très probablement, vous avez une erreur de connexion dans mysqli_connect. Informations d'identification erronées ou MySQL est en panne.
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();
}