Files
D1041231009-WebGIS-PovertyMap/_legacy/api/get_miskin.php
T
2026-05-02 14:03:04 +07:00

13 lines
356 B
PHP

<?php
header('Content-Type: application/json');
require_once 'config.php';
try {
$stmt = $pdo->query("SELECT * FROM rumah_miskin ORDER BY created_at DESC");
$data = $stmt->fetchAll();
echo json_encode($data);
} catch (PDOException $e) {
http_response_code(500);
echo json_encode(['success' => false, 'message' => $e->getMessage()]);
}