Files
webgis-pemetaan-sosial/Pertemuan01/load_spbu.php
T

23 lines
414 B
PHP

<?php
header('Content-Type: application/json');
require_once '../config.php';
$conn = getDB();
// Ambil semua data dari tabel spbu_point
$sql = "SELECT * FROM spbu_point";
$result = $conn->query($sql);
$data_spbu = array();
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$data_spbu[] = $row;
}
}
// Kirim data sebagai JSON
echo json_encode($data_spbu);
$conn->close();
?>