Hello,
I wonder how I can make a SHOW TABLES with PDO.
I tried this but it displays only the first table.
$allTable = $pdo->query('SHOW TABLES', PDO::FETCH_NUM);
foreach($allTable->fetch() as $db=>$tableName) {
echo $tableName . '<br />';
}