Update cek_tabel.php
This commit is contained in:
+5
-5
@@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
include 'koneksi.php';
|
include 'koneksi.php';
|
||||||
|
|
||||||
echo "<h3>Database Aktif</h3>";
|
$q = mysqli_query($conn, "SELECT id, username, role, id_rumah_ibadah FROM users");
|
||||||
|
|
||||||
$q = mysqli_query($conn, "SHOW TABLES");
|
while ($row = mysqli_fetch_assoc($q)) {
|
||||||
|
echo "<pre>";
|
||||||
while($r = mysqli_fetch_array($q)){
|
print_r($row);
|
||||||
echo $r[0] . "<br>";
|
echo "</pre>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
Reference in New Issue
Block a user