Initial commit - clean and ready for Coolify

This commit is contained in:
noooviiieee
2026-06-11 10:16:53 +07:00
commit 19ebb84943
158 changed files with 9448 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
$host = "localhost";
$user = "root";
$pass = ""; // Kosongkan, jangan ada spasi
$db = "peta_spbu";
$conn = new mysqli($host, $user, $pass, $db);
if ($conn->connect_error) {
die("Koneksi ke database gagal: " . $conn->connect_error);
}
?>