9 lines
254 B
PHP
9 lines
254 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
require_once '../../../config.php';
|
|
$conn = getDB();
|
|
$result = $conn->query("SELECT * FROM rumah_prasejahtera");
|
|
$data = [];
|
|
while ($row = $result->fetch_assoc()) $data[] = $row;
|
|
echo json_encode($data);
|
|
?>
|