Initial Commit: Tugas Semua Pertemuan

This commit is contained in:
2026-06-08 22:49:54 +07:00
commit 51ea70b6ce
51 changed files with 6841 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
include 'koneksi.php';
$result = mysqli_query($conn, "SELECT * FROM parsil");
$data = [];
while($row = mysqli_fetch_assoc($result)){
$data[] = $row;
}
echo json_encode($data);
?>