Update cek_tabel.php

This commit is contained in:
2026-06-09 14:44:08 +00:00
parent 5784b76e70
commit f195da993a
+4 -4
View File
@@ -1,10 +1,10 @@
<?php
include 'koneksi.php';
echo "<h3>Daftar Tabel</h3>";
echo "<pre>";
$q = mysqli_query($conn, "SHOW TABLES");
$q = mysqli_query($conn, "SHOW DATABASES");
while($r = mysqli_fetch_array($q)){
echo $r[0] . "<br>";
while ($r = mysqli_fetch_assoc($q)) {
print_r($r);
}