php 데이터베이스의 모든 테이블 목록보기
관련링크
본문
코드 :
mysql_connect("db_host","db_user","db_pass");
$tables = mysql_list_tables("db_name");
while (list($table) = mysql_fetch_row($tables)) {
echo "$table ";
}
페이지 정보
[ 조회 85회 ] 작성일18-01-15 17:54