Files
WebGIS-Tugas-Setiap-Pertemuan/Jalan-Rusak/get_jalan.php
T

12 lines
190 B
PHP

<?php
include 'koneksi.php';
$result = mysqli_query($conn, "SELECT * FROM jalan");
$data = [];
while($row = mysqli_fetch_assoc($result)){
$data[] = $row;
}
echo json_encode($data);
?>