Upload files to "/"

first commit
This commit is contained in:
2026-06-10 21:01:26 +00:00
commit fc05509c20
5 changed files with 69 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
include 'koneksi.php';
$result = mysqli_query($conn, "SELECT * FROM jalan");
$data = [];
while($row = mysqli_fetch_assoc($result)){
$data[] = $row;
}
echo json_encode($data);
?>