initial commit pemetaan kemiskinan

This commit is contained in:
2026-06-12 23:41:56 +07:00
commit 1fdcddc550
22 changed files with 1700 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
include "../config/koneksi.php";
$result = mysqli_query($conn, "SELECT * FROM keluarga_miskin");
$data = [];
while($row = mysqli_fetch_assoc($result)){
$data[] = $row;
}
echo json_encode($data);
?>