Upload files to "/"

This commit is contained in:
5803025056 2025-12-15 21:30:47 -05:00
parent 578b654495
commit 720425e3f3

12
db.php Normal file
View File

@ -0,0 +1,12 @@
<?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);
}
?>