6215b4367a
Sistem WebGIS analisis sebaran penduduk miskin dan jangkauan rumah ibadah. Fitur: peta interaktif Leaflet.js, CRUD rumah ibadah & penduduk miskin, auto-kategorisasi haversine, heatmap, export PDF/CSV, dashboard analitik, manajemen pengguna (superadmin/admin), login sistem. Teknologi: PHP, MySQL, Leaflet.js, OpenStreetMap, Nominatim Geocoding, mPDF. Catatan: jalankan `composer install` di folder uas/ untuk install dependencies. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
557 B
PHP
17 lines
557 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
include 'koneksi.php';
|
|
|
|
$type = $_POST['type'] ?? '';
|
|
$id = (int)($_POST['id'] ?? 0);
|
|
|
|
$whitelist = ['spbu','kemiskinan','masjid','jalan','persil','wilayah'];
|
|
if (!in_array($type, $whitelist, true) || $id <= 0) {
|
|
echo json_encode(['status' => 'error', 'message' => 'Request tidak valid.']);
|
|
exit;
|
|
}
|
|
|
|
$q = "DELETE FROM `{$type}` WHERE id = {$id}";
|
|
if (mysqli_query($conn, $q)) echo json_encode(['status' => 'success']);
|
|
else echo json_encode(['status' => 'error', 'message' => mysqli_error($conn)]);
|