Ich kenne die PDO-Syntax dafür nicht, aber das scheint ziemlich einfach zu sein:
$result = mysql_query("SHOW TABLES LIKE 'myTable'");
$tableExists = mysql_num_rows($result) > 0;
Ich kenne die PDO-Syntax dafür nicht, aber das scheint ziemlich einfach zu sein:
$result = mysql_query("SHOW TABLES LIKE 'myTable'");
$tableExists = mysql_num_rows($result) > 0;