Upload semua tugas SIG

This commit is contained in:
Wilhelmus Ikchan Dwi Putra
2026-06-13 00:45:23 +07:00
commit c8e75593cb
361 changed files with 78622 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
$host = "localhost";
$user = "root"; // Sesuaikan dengan username DB kamu
$pass = ""; // Sesuaikan dengan password DB kamu
$db = "db_webgis";
$conn = new mysqli($host, $user, $pass, $db);
if ($conn->connect_error) {
die("Koneksi database gagal: " . $conn->connect_error);
}
?>