सबसे अधिक संभावना है, आपके पास 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();
}