Add WebGIS source code

This commit is contained in:
ocabacaa
2026-06-11 23:48:02 +07:00
parent ce48dbcddc
commit b212ca27fd
37 changed files with 5764 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
$host = getenv('DB_HOST') ?: 'localhost';
$user = getenv('DB_USER') ?: 'root';
$pass = getenv('DB_PASS') ?: '';
$db = getenv('DB_NAME') ?: 'webgis_poverty';
$conn = mysqli_connect(
$host,
$user,
$pass,
$db
);
if (!$conn) {
die("Koneksi database gagal: " . mysqli_connect_error());
}
?>