Fatal error: Uncaught Error: Call to undefined function mysqli_connect() in F:\Futgraphics\backup\Website\includes\dbh.inc.php:8 Stack trace: #0 F:\Futgraphics\backup\Website\includes\signup.inc.php(9): require_once() #1 {main} thrown in F:\Futgraphics\backup\Website\includes\dbh.inc.php on line 8
Getting this error when trying to make an account on my website.
dbh.inc.php:
$serverName = "localhost";
$dBUsername = "root";
$dBPassword = "password";
$dBName = "futgraphicsusers";
$conn = mysqli_connect($serverName, $dBUsername, $dBPassword, $dBName);
if (!$conn) {
die("Connection failed: " .mysqli_connect_error());
}```