Initial commit

This commit is contained in:
ocabacaa
2026-06-11 03:02:00 +07:00
commit 8c74b19cc6
16 changed files with 1912 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
include '../koneksi.php';
$query =
mysqli_query(
$conn,
"SELECT * FROM objek_peta"
);
$data = [];
while(
$row =
mysqli_fetch_assoc($query)
){
$data[] = $row;
}
echo json_encode($data);