首頁 >後端開發 >php教程 >php列出資料庫中的所有表

php列出資料庫中的所有表

WBOY
WBOY原創
2016-07-25 08:43:321037瀏覽
  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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn