Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Dec 20, 2023
1 parent 0a1f5ff commit 3456b73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ function fix_linebreaks($content)
return str_replace(array("\r\n", "\n", "\r"), "\n", $content);
}

$connection = mysqli_connect('localhost', 'root', 'password');
$connection = @mysqli_connect('localhost', 'root', 'password');
var_dump($connection);
var_dump(mysqli_connect_error());
var_dump(mysqli_connect_errno());
exit;

0 comments on commit 3456b73

Please sign in to comment.