38960-vm/list_tables.php
2026-03-21 07:38:35 +00:00

8 lines
159 B
PHP

<?php
require_once 'db/config.php';
$db = db();
$stmt = $db->query("SHOW TABLES");
$tables = $stmt->fetchAll(PDO::FETCH_COLUMN);
echo implode("\n", $tables);