add files

This commit is contained in:
luthfihadinugroho79
2026-06-10 19:39:45 +07:00
parent b2a31a6a16
commit 7bf3c98e59
3541 changed files with 458317 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?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);
?>