tsinka wrote:
write a little script that connects to the database and execute
SHOW TABLES
There is a PHP function to do that job :
$list = mysql_list_tables(your_db);
From the PHP manual:
mysql_list_tables() takes a database name and returns a result pointer much like the mysql_db_query() function. The mysql_tablename() function should be used to extract the actual table names from the result pointer.