MySQL 데이터베이스 목록 불러오기 mysql_list_dbs()  DB 관련 함수

 

데이터 베이스 목록을 불러 오기 위한 함수 mysql_list_dbs()를 사용하면 된다.

 

사용법 :

 

 <?
$link = mysql_connect("localhost", "root", "apmsetup");
mysql_select_db("hello");

$db_list = mysql_list_dbs($link);

echo "$db_list";

while ($row = mysql_fetch_object($db_list)){
echo "$row->Database <br />";
}


 ?>

블로그 이미지

itworldkorea

IT korea가 세상(world)을 변화시킨다.

,