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,252
13년 전 조회 2,437
13년 전 조회 2,038
13년 전 조회 3,245
13년 전 조회 1,905
13년 전 조회 1,611
13년 전 조회 1,791
13년 전 조회 4,596
13년 전 조회 3,478
13년 전 조회 2,032
13년 전 조회 2,216
13년 전 조회 3,618
13년 전 조회 2,606
13년 전 조회 1,750
13년 전 조회 1,866
13년 전 조회 3,220
13년 전 조회 1,733
13년 전 조회 1,991
13년 전 조회 1,448
13년 전 조회 1,624
13년 전 조회 2,362
13년 전 조회 3,903
13년 전 조회 1,671
13년 전 조회 1,889
13년 전 조회 2,340
13년 전 조회 1,731
13년 전 조회 3,340
13년 전 조회 1,937
13년 전 조회 2,617
13년 전 조회 2,840
13년 전 조회 2,653
13년 전 조회 1,990
13년 전 조회 2,276
13년 전 조회 1,790
13년 전 조회 1,629
13년 전 조회 2,314
13년 전 조회 1,982
13년 전 조회 1,847
13년 전 조회 1,756
13년 전 조회 1,955
13년 전 조회 1,720
13년 전 조회 2,300
13년 전 조회 1,938
13년 전 조회 1,607
13년 전 조회 2,238
13년 전 조회 1,899
13년 전 조회 2,578
13년 전 조회 2,076
13년 전 조회 4,490
13년 전 조회 2,565
13년 전 조회 3,123
13년 전 조회 1,781
13년 전 조회 1,431
13년 전 조회 2,122
13년 전 조회 2,908
13년 전 조회 1,802
13년 전 조회 3,028
13년 전 조회 1,727
13년 전 조회 2,097
13년 전 조회 2,783
13년 전 조회 2,117
13년 전 조회 1,768
13년 전 조회 2,484
13년 전 조회 4,774
13년 전 조회 1,499
13년 전 조회 1,598
13년 전 조회 1,748
13년 전 조회 4,839
13년 전 조회 2,200
13년 전 조회 2,415
13년 전 조회 2,425
13년 전 조회 1,708
13년 전 조회 1,578
13년 전 조회 1,743
13년 전 조회 2,554
13년 전 조회 1,887
13년 전 조회 2,219
13년 전 조회 3,383
13년 전 조회 1,867
13년 전 조회 2,175
13년 전 조회 2,280
13년 전 조회 1,663
13년 전 조회 4,374
13년 전 조회 2,162
13년 전 조회 3,697
13년 전 조회 2,010
13년 전 조회 1,703
13년 전 조회 1,760
13년 전 조회 1,615
13년 전 조회 2,140
13년 전 조회 2,278
13년 전 조회 3,622
13년 전 조회 5,197
13년 전 조회 1,627
13년 전 조회 4,183
13년 전 조회 1,575
13년 전 조회 2,055
13년 전 조회 1,659
13년 전 조회 2,000
13년 전 조회 2,755