Delete db.php

This commit is contained in:
5803025056 2025-12-15 21:29:26 -05:00
parent e3931ecd6d
commit 578b654495

12
db.php
View File

@ -1,12 +0,0 @@
<?php
$host = "localhost";
$user = "root";
$pass = "";
$db = "dodge_game";
$conn = new mysqli($host, $user, $pass, $db);
if ($conn->connect_error) {
die("Koneksi gagal: " . $conn->connect_error);
}
?>