1 <!--?
2 $connect=mysql_connect("dbserver","dbuser","dbpassword") or die("Unable to Connect");
3 mysql_select_db("dbname") or die("Could not open the db");
4 $showtablequery="SHOW TABLES FROM dbname";
5 $query_result=mysql_query($showtablequery);
6 while($showtablerow = mysql_fetch_array($query_result))
7 {
8 echo $showtablerow[0]." ";
9 }
10 ?-->