Files
UAS_WEBGIS_MaghfiraIzzati_D…/WEBGIS/01/api/read_data.php
T
2026-06-10 16:49:48 +07:00

25 lines
367 B
PHP

<?php
include "db_config.php";
header('Content-Type: application/json');
$sql = "SELECT * FROM spbu";
$result = $conn->query($sql);
if (!$result) {
echo json_encode([
"status" => "error",
"message" => "Gagal membaca tabel spbu",
"detail" => $conn->error
]);
exit;
}
$data = [];
while($row = $result->fetch_assoc()){
$data[] = $row;
}
echo json_encode($data);
?>