欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php列出数据库中的所有表

程序员文章站 2022-05-28 17:17:11
...
  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 {
  8. $list .= " - " . mysql_tablename( $rs2, $num ) . "
    ";
  9. }
  10. }
  11. }
  12. ?>
  13. Listing Tables
复制代码

数据库中, php