You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FutureCraft/db_connection.php

13 lines
247 B

6 months ago
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "donateease";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
?>