Files
WebGIS_Project/01/ambil_data.php
T
luthfihadinugroho79 e950468760 add files
2026-06-10 19:42:59 +07:00

11 lines
246 B
PHP

<?php
include 'koneksi.php';
$query = mysqli_query($koneksi, "SELECT id, nama_spbu, no_wa, status_24_jam, lat, lng FROM $nama_tabel");
$data = array();
while($row = mysqli_fetch_assoc($query)){
$data[] = $row;
}
echo json_encode($data);
?>