xml 생성시 여분필드값 불러와 집어넣기....
본문
<code>
/*xml 생성*/
$music_path = "../../../data/file/$bo_table/";
$checked_song=explode(",",$selected);
$checked_song=array_reverse($checked_song);
$array_cnt=count($checked_song);
for ($i=0; $i<count($list); $i++)
{
$temp=sql_fetch_array(sql_query("select wr_subject as subject, wr_name as name, wr_3 as sitelink1, wr_4 as sitewr4, wr_link2 as sitelink2, wr_content as memo, wr_hit as hit from g5_write_$bo_table wr_id='$checked_song[$i]'"));
$subject[$i]=stripslashes($temp[subject]);
$wr_4[$i]=($temp[sitewr4]);
$temp[file_name1]=stripslashes($temp[file_name1]);
$arr = array($music_path,$temp[file_name1]);
$dasom_path = implode("",$arr);
$dasom_1=$temp[sitelink1];
$dasom_3=$dasom_path;
if ($dasom_1==""){
$song_path1[$i]=$dasom_3;
}else{
$song_path1[$i]=$temp[sitelink1];
}
$song_path3[$i]=$dasom_path;
$get_xml .= $data[xml_start];
$get_xml .= "<title>{$list[$i][subject]}</title>";
$get_xml .= "<location>{$song_path1[$i]}</location>";
$get_xml .= "<image>{$list[$i][wr_4]}</image>";
$get_xml .= $data[xml_end];
}
$get_xml .= $data[tracklist_end];
$get_xml .= $data[playlist_end];
</code>
타이틀 <title>{$list[$i][subject]}</title> 는 잘 나옵니다.
헌데,
<location>{$song_path1[$i]}</location>
여기가 wr_3 의 값인 '유투브주소' 가 나와야 하는데,
$music_path 의 "../../../data/file/$bo_table/" 이 문자가 그대로 출력됩니다.
변수 $bo_table 은 아예 출력안된채로요....
어찌하면 wr_3 값인 유투브 주소를 생성할 수 있을까요...