Files
UAS_WEBGIS_DestraAuliaFazaA…/webgis-geopoverty/php/debug_user.php
T
2026-06-10 22:55:29 +07:00

13 lines
271 B
PHP

<?php
require 'koneksi.php';
$result = mysqli_query($conn, "SELECT id, username, role FROM pengguna");
$data = [];
while ($row = mysqli_fetch_assoc($result)) {
$data[] = $row;
}
header('Content-Type: application/json');
echo json_encode($data, JSON_PRETTY_PRINT);