initial commit

This commit is contained in:
2026-06-13 13:18:32 +07:00
commit 5d20c793eb
59 changed files with 6179 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
$conn = new mysqli("localhost", "root", "yourpassword", "webgis");
if ($conn->connect_error) {
die("Koneksi gagal: " . $conn->connect_error);
}
?>