Files
webgis-pemetaan-sosial/WebGISPovertyMapping/api/prasejahtera/load_prasejahtera.php
T
2026-06-10 21:06:57 +07:00

9 lines
254 B
PHP

<?php
header('Content-Type: application/json');
require_once '../../../config.php';
$conn = getDB();
$result = $conn->query("SELECT * FROM rumah_prasejahtera");
$data = [];
while ($row = $result->fetch_assoc()) $data[] = $row;
echo json_encode($data);
?>