Listing Tables ">
输入banner图图片脚本导航/分类

php列出数据库中的所有表

  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