제로보드 연동법 - bgm

제로보드 연동법 - bgm
제로보드 연동법



bgm.html 이라는 파일을 열면 플레이리스트 작성하는 곳이 있습니다.


addbgm("http://oxtag.com/aaa.asf","가수1 - 노래제목");  
addbgm("http://oxtag.com/bbb.asf","가수2 - 노래제목");  
....
addbgm("http://oxtag.com/zzz.asf","가수3 - 노래제목");


위 플레이 리스트 부분을 삭제하셔도 되구... 안하셔도 되구...
어째든 위 부분이 있는 곳에 아래 함수를 넣어주세요.

<?
$connect=mysql_connect("localhost","유저","패스워드");  
mysql_select_db("디비네임", $connect);  

$zb_url = "../zboard/"; // 제로보드 경로 (업로드1, 업로드2 경로설정 때문에...)
$board_id = "ms_iedeo";        // 추출할 음악 게시판 보드명을 입력하세요.
$list_num = "10";        // 추출할 개 수를 입력하세요.
$num_rand = "1";        // 최근등록순 = 1, 램덤추출 = 2

if($num_rand==1) $num_rand = "order by no desc";
        elseif($num_rand==2) $num_rand = "order by rand()";
        else $num_rand = "order by no desc";

$temp=mysql_query("select sitelink1, sitelink2, file_name1, file_name2, subject from zetyx_board_$board_id $num_rand limit $list_num", $connect);


while($data=mysql_fetch_array($temp)) {  

        $subject=$data[subject];
        if($data[sitelink1]) $url = stripslashes($data[sitelink1]);
        elseif($data[sitelink2]) $url = stripslashes($data[sitelink2]);
        elseif($data[file_name1]) $url =  $zb_url.stripslashes($data[file_name1]);
        elseif($data[file_name2]) $url =  $zb_url.stripslashes($data[file_name2]);
        else $url = "";

        $title = stripslashes($data[subject]);  

        echo "addbgm(\"{$url}\",\"{$title}\");\n";
}  

mysql_close($connect);  
?>