List all tables in a database : Database MetaData : MySQL Database PHP Source Code


PHP Source Code » MySQL Database » Database MetaData »

 

List all tables in a database



<?php

   mysql_connect("mysql153.secureserver.net","navioo","password");

   $tables = mysql_list_tables("navioo");

   while (list($table= mysql_fetch_row($tables)) {
      echo "$table <br />";
   }

?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo MySQL Database
» Database MetaData