当前位置:Gxlcms > PHP教程 > php列出数据库中的所有表

php列出数据库中的所有表

时间:2021-07-01 10:21:17 帮助过:91人阅读

  1. {
  2. $this_db = mysql_tablename( $rs1, $row );
  3. $list .= "".$this_db."
    ";
  4. if( $this_db != "mysql" )
  5. {
  6. $rs2 = mysql_list_tables( $this_db );
  7. for( $num=0; $num < mysql_num_rows( $rs2) ; $num++ )
  8. {
  9. $list .= " - " . mysql_tablename( $rs2, $num ) . "
    ";
  10. }
  11. }
  12. }
  13. ?>
  14. Listing Tables

数据库中, php

人气教程排行