Initial commit

This commit is contained in:
2026-06-13 13:38:52 +07:00
commit 1c9cc7dfbb
41 changed files with 6993 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
$conn = new mysqli("localhost", "root", "", "webgis_unified");
if ($conn->connect_error) {
die("Koneksi gagal: " . $conn->connect_error);
}
?>