18 lines
315 B
PHP
18 lines
315 B
PHP
<?php
|
|
include 'koneksi.php';
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
|
|
$query = "SELECT * FROM masjid ORDER BY id DESC";
|
|
$result = mysqli_query($conn, $query);
|
|
$data = [];
|
|
|
|
if ($result) {
|
|
while ($row = mysqli_fetch_assoc($result)) {
|
|
$data[] = $row;
|
|
}
|
|
}
|
|
|
|
echo json_encode($data);
|
|
?>
|