1st commit: Arsitektur WebGis tersentralisasi dan dokumentasi lengkap

This commit is contained in:
2026-06-12 11:20:21 +07:00
commit 7ee3db6d93
43 changed files with 5353 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
// otak_spbu/api_tampil_spbu.php
header("Content-Type: application/json; charset=UTF-8");
require_once '../koneksi.php';
try {
$stmt = $conn->query("SELECT * FROM spbu_markers ORDER BY created_at DESC");
$data = $stmt->fetchAll(PDO::FETCH_ASSOC);
echo json_encode($data);
} catch(PDOException $e) {
http_response_code(500);
echo json_encode(["error" => "Gagal mengambil data: " . $e->getMessage()]);
}
?>