15 lines
397 B
PHP
15 lines
397 B
PHP
<?php
|
|
include 'koneksi.php';
|
|
|
|
$tables = ['masyarakat_miskin', 'rumah_ibadah', 'fasilitas_jalan', 'fasilitas_polygon', 'fasilitas_spbu', 'bantuan_riwayat'];
|
|
|
|
foreach ($tables as $table) {
|
|
$res = $conn->query("SELECT COUNT(*) FROM $table");
|
|
if ($res) {
|
|
echo "$table count: " . $res->fetch_row()[0] . "\n";
|
|
} else {
|
|
echo "$table error: " . $conn->error . "\n";
|
|
}
|
|
}
|
|
?>
|