initial commit

This commit is contained in:
2026-06-13 13:18:32 +07:00
commit 5d20c793eb
59 changed files with 6179 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
include 'koneksi.php';
header('Content-Type: application/json; charset=utf-8');
$result = $conn->query("SELECT * FROM lokasi");
$data = [];
while ($row = $result->fetch_assoc()) {
$data[] = $row;
}
echo json_encode($data);
?>