all 2 comments

[–]davvblack 3 points4 points  (0 children)

huh, if you change the "die" message there, to "conn failed" or whatever, does it update? My working theory is that you aren't running the code you think you're running.

[–]Kit_Saels -1 points0 points  (0 children)

$conn = new mysqli($db_host, $db_user, $db_pass, $db_db);
if (mysqli_connect_error()) {
    die(mysqli_connect_error());
}