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:
Related in same category :
-
-
-
-
-
|