Why my page doesn't work anymore after I added this code in:
<?php
$conn = mysqli_connect($host, $user, $pw, $db);
if ($conn == false) {
die("Es konnte keine Verbindung zur Datenbank hergestellt werden");
}
?>
The error which I get is:
ERR_EMPTY_RESPONSE
If I uncomment this code then it works.
How can I solve this?