Initial commit WebGIS Poverty Mapping

This commit is contained in:
SatryaIrvannurYudha
2026-06-04 21:28:53 +07:00
commit fdf1e36cd3
18 changed files with 1333 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
include 'koneksi.php';
echo "=== KOLOM tabel_ibadah ===\n";
$r = mysqli_query($conn, "DESCRIBE tabel_ibadah");
if ($r) {
while($row = mysqli_fetch_assoc($r)) {
echo "- " . $row['Field'] . "\n";
}
} else {
echo "Tabel tidak ada atau error: " . mysqli_error($conn) . "\n";
}
echo "\n=== KOLOM tabel_penduduk ===\n";
$r2 = mysqli_query($conn, "DESCRIBE tabel_penduduk");
if ($r2) {
while($row = mysqli_fetch_assoc($r2)) {
echo "- " . $row['Field'] . "\n";
}
} else {
echo "Tabel tidak ada atau error: " . mysqli_error($conn) . "\n";
}