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,179
13년 전 조회 2,371
13년 전 조회 1,979
13년 전 조회 3,189
13년 전 조회 1,826
13년 전 조회 1,546
13년 전 조회 1,728
13년 전 조회 4,536
13년 전 조회 3,404
13년 전 조회 1,972
13년 전 조회 2,135
13년 전 조회 3,555
13년 전 조회 2,545
13년 전 조회 1,699
13년 전 조회 1,807
13년 전 조회 3,153
13년 전 조회 1,659
13년 전 조회 1,930
13년 전 조회 1,380
13년 전 조회 1,554
13년 전 조회 2,290
13년 전 조회 3,851
13년 전 조회 1,606
13년 전 조회 1,842
13년 전 조회 2,263
13년 전 조회 1,668
13년 전 조회 3,280
13년 전 조회 1,866
13년 전 조회 2,551
13년 전 조회 2,782
13년 전 조회 2,601
13년 전 조회 1,924
13년 전 조회 2,210
13년 전 조회 1,703
13년 전 조회 1,555
13년 전 조회 2,231
13년 전 조회 1,907
13년 전 조회 1,760
13년 전 조회 1,687
13년 전 조회 1,887
13년 전 조회 1,652
13년 전 조회 2,237
13년 전 조회 1,864
13년 전 조회 1,540
13년 전 조회 2,176
13년 전 조회 1,836
13년 전 조회 2,516
13년 전 조회 2,009
13년 전 조회 4,421
13년 전 조회 2,497
13년 전 조회 3,061
13년 전 조회 1,729
13년 전 조회 1,358
13년 전 조회 2,066
13년 전 조회 2,840
13년 전 조회 1,738
13년 전 조회 2,967
13년 전 조회 1,666
13년 전 조회 2,037
13년 전 조회 2,716
13년 전 조회 2,056
13년 전 조회 1,703
13년 전 조회 2,421
13년 전 조회 4,704
13년 전 조회 1,439
13년 전 조회 1,522
13년 전 조회 1,673
13년 전 조회 4,779
13년 전 조회 2,133
13년 전 조회 2,349
13년 전 조회 2,362
13년 전 조회 1,640
13년 전 조회 1,516
13년 전 조회 1,670
13년 전 조회 2,489
13년 전 조회 1,808
13년 전 조회 2,137
13년 전 조회 3,310
13년 전 조회 1,812
13년 전 조회 2,110
13년 전 조회 2,210
13년 전 조회 1,596
13년 전 조회 4,307
13년 전 조회 2,090
13년 전 조회 3,627
13년 전 조회 1,949
13년 전 조회 1,643
13년 전 조회 1,703
13년 전 조회 1,545
13년 전 조회 2,067
13년 전 조회 2,219
13년 전 조회 3,555
13년 전 조회 5,129
13년 전 조회 1,570
13년 전 조회 4,110
13년 전 조회 1,508
13년 전 조회 1,996
13년 전 조회 1,597
13년 전 조회 1,929
13년 전 조회 2,688