Najprawdopodobniej masz błąd połączenia w mysqli_connect. Złe dane uwierzytelniające lub MySQL nie działa.
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();
}