initial commit sistem pemetaan kemiskinan

This commit is contained in:
2026-06-13 00:01:53 +07:00
commit 57505fe2b0
14 changed files with 580 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
$conn = new mysqli("localhost", "root", "", "gis_spbu");
$result = $conn->query("SELECT * FROM spbu");
$data = [];
while($row = $result->fetch_assoc()){
$data[] = $row;
}
echo json_encode($data);
?>