묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
자바스크립트 안에 PHP 변수를 넣을 수 없나요?
2006.08.01 20:05
DB에서 5개의 레코드를 뽑아서 배열 변수에 넣어서
자바스크립트 소스에 그 변수를 넣어서 출력하려는데...
PHP소스를 자바스크립트 소스 안에 넣으면 인식이 안되나요? 아니면 다른 방법이 있는지....
<? while ($array=mysql_fetch_array($result)) {
$date=date("Y/m/d", $array[reg_date]);
$str[$i]="<table width=550 border=0 cellspacing=0 cellpadding=0><tr><td rowspan=3 width=35 height=56 align=center><img src='../images/$img_no.gif'></td><td rowspan=3 width=56 align=center><img src='../bbs/$array[file_name1]' width=56 height=56></td><td colspan=2 align=left>$array[subject]</td></tr><tr><td colspan=2 align=left>$array[memo]</td></tr><tr><td width=150 align=left>$array[name]</td><td width=309 align=left>$date</td></tr></table>";
$cur_num --;
$img_no ++;
$i ++;
}
?>
위의 PHP 소스를 이용해서 $str[0]~$str[4]까지 입력하고
<script type="text/javascript">
theNews=new newsScroll('theNews'); //create our newsScroller object
theNews.scrollerdelay = 2500;
theNews.scrollerwidth = 550;
theNews.scrollerheight = 56;
theNews.scrollerbgcolor = '';
theNews.scrollerbackground = '';
theNews.addItem('a','','','Txt1');
theNews.addItem('b'+ '+ ','','','Txt2');
theNews.addItem('c','','','Txt3');
theNews.addItem('d','','','Txt4');
theNews.addItem('e','','','Txt5');
theNews.construct();
theNews.startScroll();
</script>
위 소스의 a,b,c,d,e에 각각 $str[0], $str[1], $str[2], $str[3], $str[4]를 넣으려고 합니다
도와주세요 ㅠ
자바스크립트 소스에 그 변수를 넣어서 출력하려는데...
PHP소스를 자바스크립트 소스 안에 넣으면 인식이 안되나요? 아니면 다른 방법이 있는지....
<? while ($array=mysql_fetch_array($result)) {
$date=date("Y/m/d", $array[reg_date]);
$str[$i]="<table width=550 border=0 cellspacing=0 cellpadding=0><tr><td rowspan=3 width=35 height=56 align=center><img src='../images/$img_no.gif'></td><td rowspan=3 width=56 align=center><img src='../bbs/$array[file_name1]' width=56 height=56></td><td colspan=2 align=left>$array[subject]</td></tr><tr><td colspan=2 align=left>$array[memo]</td></tr><tr><td width=150 align=left>$array[name]</td><td width=309 align=left>$date</td></tr></table>";
$cur_num --;
$img_no ++;
$i ++;
}
?>
위의 PHP 소스를 이용해서 $str[0]~$str[4]까지 입력하고
<script type="text/javascript">
theNews=new newsScroll('theNews'); //create our newsScroller object
theNews.scrollerdelay = 2500;
theNews.scrollerwidth = 550;
theNews.scrollerheight = 56;
theNews.scrollerbgcolor = '';
theNews.scrollerbackground = '';
theNews.addItem('a','','','Txt1');
theNews.addItem('b'+ '+ ','','','Txt2');
theNews.addItem('c','','','Txt3');
theNews.addItem('d','','','Txt4');
theNews.addItem('e','','','Txt5');
theNews.construct();
theNews.startScroll();
</script>
위 소스의 a,b,c,d,e에 각각 $str[0], $str[1], $str[2], $str[3], $str[4]를 넣으려고 합니다
도와주세요 ㅠ