query("SHOW TABLES"); $tables = $stmt->fetchAll(PDO::FETCH_COLUMN); $sql = "SET FOREIGN_KEY_CHECKS=0; "; foreach ($tables as $table) { $createStmt = $pdo->query("SHOW CREATE TABLE `$table`")->fetch(PDO::FETCH_ASSOC); $sql .= "-- Table structure for `$table`\n"; $sql .= $createStmt['Create Table'] . ";\n\n"; } $sql .= "SET FOREIGN_KEY_CHECKS=1;\n"; echo $sql;