first commit

This commit is contained in:
2026-06-17 15:41:34 +07:00
commit be2f139a8f
14 changed files with 1494 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
$host = getenv('DB_HOST') ?: "localhost";
$user = getenv('DB_USER') ?: "root";
$pass = getenv('DB_PASS') ?: "";
$name = getenv('DB_NAME') ?: "gis_tugas";
$conn = mysqli_connect($host, $user, $pass, $name);
if (!$conn) { die("Koneksi gagal: " . mysqli_connect_error()); }
?>