Paul Gerrad Renwarin 8e49077466 refisi update
2025-12-16 09:00:32 +07:00

13 lines
209 B
PHP

<?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);
}
?>