![]() |
|
|
+ Search |
![]()
|
Dec 20th, 2001 08:54
MyNameIs Monkey, Ony Cejas, Ben Udall, http://www.php.net/manual/en/function.mysql-list-tables.php
<?
mysql_select_db($yourdb);
$tables=mysql_list_tables($yourdb);
while (list($tablename)=mysql_fetch_array($tables))
{
echo $tablename." are the tablenames";
echo "<br>";
}