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
+16
View File
@@ -0,0 +1,16 @@
<?php
include '../koneksi.php';
$query = mysqli_query(
$conn,
"SELECT * FROM spbu"
);
$data = [];
while($row = mysqli_fetch_assoc($query)){
$data[] = $row;
}
echo json_encode($data);