diff --git a/cek_tabel.php b/cek_tabel.php new file mode 100644 index 0000000..dfd1e81 --- /dev/null +++ b/cek_tabel.php @@ -0,0 +1,17 @@ +Daftar Tabel yang Ada di Database Server:"; + +$result = mysqli_query($conn, "SHOW TABLES"); + +if (mysqli_num_rows($result) > 0) { + echo ""; +} else { + echo "

❌ KOSONG! Belum ada tabel sama sekali di database Anda.

"; +} +?> \ No newline at end of file