 |
PHP: mysql_list_tables - Manual - PHP: Hypertext Preprocessor
You can also do this with function mysql_query(). It's better because mysql_list_tables is old function and you can stop showing errors. function mysql_table_exists($dbLink, $database, $tableName) { $tables = array(); $tablesResult = mysql_query("SHOW ...
php.net |
 |