Initial commit: Upload project WebGIS pemetaan sosial

This commit is contained in:
powji17
2026-06-04 09:42:37 +07:00
commit 32f444f8ad
41 changed files with 2683 additions and 0 deletions
@@ -0,0 +1,8 @@
<?php
header('Content-Type: application/json');
$conn = new mysqli('localhost', 'root', '', 'webgis');
$result = $conn->query("SELECT * FROM rumah_prasejahtera");
$data = [];
while ($row = $result->fetch_assoc()) $data[] = $row;
echo json_encode($data);
?>