Is there any way to do a query to find out all the tables in a database?
$result = mysql_query("show tables");
show the results just like any other result set, fetch the row, echo $row[0], etc...
---John Holmes...