wow맨

최근게시물(PHP) 클릭시 팝업창을 띄우는 방법..도와주세요ㅠㅠ

최근게시물 클릭시 팝업창을 띄우는 방법...

안녕하세요
PHP에 대해 질문이 있습니다.
메인에 있는 최근 글(공지사항)을 클릭시 공지사항 페이지로 들어가지 않고
그냥 팝업을 띄우는 소스를 만들어봤는데..잘 안되었습니다.ㅠㅠ
어떻게 됩니까?
----------------------------------------------------------------
<!--클릭할때 새창을 나오는 자바스크립트-->
<script language="JavaScript">
<!--
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'yes';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
// -->
</script>
...
...
...
...
<? 
$my_content =htmlspecialchars($row_sch["content"]);    //제목 HTML 치환
if(strlen($my_content)<1) $my_content = "No content";  //빈제목 치환
if($_GET["schword"]){ // 검색어 치환하기
$arr_find_value = explode(",",$_GET["schword"]);
for($j=0;$j<count($arr_find_value);$j++){
$my_content = eregi_replace("(\\$arr_find_value[$j])", "<font color='#FF0066'>\\1</font>", $my_content);
}
}

// 메인에 있는 최근 글(공지사항)을 클릭하면 공지사항 페이지로 가는것
$my_content = $my_content;
$my_content = encode_substr($my_content,0,200,"EUR-KR");
echo "<a href='supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key' onfocus='this.blur();'>$my_content</a>";
 
// 메인에 있는 최근 글(공지사항)을 클릭하면 공지사항 팝업으로 나오는 것
$my_content = $my_content;
$my_content = encode_substr($my_content,0,200,"EUR-KR");
echo "<a href='javascript:na_open_window('win', 'supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key' onfocus='this.blur();', 350, 200, 573, 500, 0, 0, 0, 0, 0)'>$my_content</a>";
으로 수정해보니 잘 안되었는데요..
...
무엇때문에 에러났습니까?ㅠㅠ
도와주세요
 
|

댓글 2개

echo "<a href='javascript:na_open_window(\"win\",\"supp_view.php?wr=jw&uid=".$row_sch["uid"]."&start=$start$etc_key\", 350, 200, 573, 500, 0, 0, 0, 0, 0)' onfocus='this.blur();'>$my_content</a>";

onfocus 부분은 na_open_window 함수의 인자가 아니므로 빼고,
중첩되는 맨 안쪽의 ' 는 \"으로 바꿔봤습니다. ^^
잘 나왔습니다 정말 감사합니다~~(--)(__)
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 2,356
13년 전 조회 2,554
13년 전 조회 2,144
13년 전 조회 3,344
13년 전 조회 1,987
13년 전 조회 1,714
13년 전 조회 1,897
13년 전 조회 4,695
13년 전 조회 3,576
13년 전 조회 2,125
13년 전 조회 2,304
13년 전 조회 3,736
13년 전 조회 2,703
13년 전 조회 1,849
13년 전 조회 1,957
13년 전 조회 3,323
13년 전 조회 1,827
13년 전 조회 2,092
13년 전 조회 1,538
13년 전 조회 1,706
13년 전 조회 2,460
13년 전 조회 3,999
13년 전 조회 1,770
13년 전 조회 2,006
13년 전 조회 2,442
13년 전 조회 1,835
13년 전 조회 3,424
13년 전 조회 2,040
13년 전 조회 2,713
13년 전 조회 2,956
13년 전 조회 2,760
13년 전 조회 2,101
13년 전 조회 2,381
13년 전 조회 1,898
13년 전 조회 1,748
13년 전 조회 2,412
13년 전 조회 2,099
13년 전 조회 1,951
13년 전 조회 1,851
13년 전 조회 2,045
13년 전 조회 1,825
13년 전 조회 2,405
13년 전 조회 2,053
13년 전 조회 1,717
13년 전 조회 2,330
13년 전 조회 1,993
13년 전 조회 2,690
13년 전 조회 2,181
13년 전 조회 4,612
13년 전 조회 2,675
13년 전 조회 3,245
13년 전 조회 1,890
13년 전 조회 1,538
13년 전 조회 2,236
13년 전 조회 3,012
13년 전 조회 1,912
13년 전 조회 3,124
13년 전 조회 1,847
13년 전 조회 2,203
13년 전 조회 2,896
13년 전 조회 2,222
13년 전 조회 1,891
13년 전 조회 2,603
13년 전 조회 4,881
13년 전 조회 1,618
13년 전 조회 1,685
13년 전 조회 1,847
13년 전 조회 4,944
13년 전 조회 2,312
13년 전 조회 2,523
13년 전 조회 2,533
13년 전 조회 1,827
13년 전 조회 1,687
13년 전 조회 1,847
13년 전 조회 2,642
13년 전 조회 1,994
13년 전 조회 2,307
13년 전 조회 3,489
13년 전 조회 1,969
13년 전 조회 2,279
13년 전 조회 2,401
13년 전 조회 1,752
13년 전 조회 4,490
13년 전 조회 2,266
13년 전 조회 3,802
13년 전 조회 2,130
13년 전 조회 1,821
13년 전 조회 1,859
14년 전 조회 1,712
14년 전 조회 2,248
14년 전 조회 2,377
14년 전 조회 3,722
14년 전 조회 5,298
14년 전 조회 1,714
14년 전 조회 4,287
14년 전 조회 1,682
14년 전 조회 2,147
14년 전 조회 1,773
14년 전 조회 2,113
14년 전 조회 2,862