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,082
13년 전 조회 2,278
13년 전 조회 1,885
13년 전 조회 3,093
13년 전 조회 1,728
13년 전 조회 1,448
13년 전 조회 1,643
13년 전 조회 4,440
13년 전 조회 3,307
13년 전 조회 1,882
13년 전 조회 2,041
13년 전 조회 3,448
13년 전 조회 2,455
13년 전 조회 1,598
13년 전 조회 1,724
13년 전 조회 3,043
13년 전 조회 1,559
13년 전 조회 1,845
13년 전 조회 1,277
13년 전 조회 1,445
13년 전 조회 2,195
13년 전 조회 3,747
13년 전 조회 1,505
13년 전 조회 1,746
13년 전 조회 2,179
13년 전 조회 1,572
13년 전 조회 3,187
13년 전 조회 1,764
13년 전 조회 2,466
13년 전 조회 2,690
13년 전 조회 2,520
13년 전 조회 1,831
13년 전 조회 2,097
13년 전 조회 1,612
13년 전 조회 1,468
13년 전 조회 2,133
13년 전 조회 1,821
13년 전 조회 1,679
13년 전 조회 1,582
13년 전 조회 1,797
13년 전 조회 1,558
13년 전 조회 2,151
13년 전 조회 1,787
13년 전 조회 1,467
13년 전 조회 2,070
13년 전 조회 1,735
13년 전 조회 2,446
13년 전 조회 1,924
13년 전 조회 4,328
13년 전 조회 2,404
13년 전 조회 2,973
13년 전 조회 1,635
13년 전 조회 1,253
13년 전 조회 1,982
13년 전 조회 2,750
13년 전 조회 1,631
13년 전 조회 2,863
13년 전 조회 1,589
13년 전 조회 1,956
13년 전 조회 2,630
13년 전 조회 1,980
13년 전 조회 1,618
13년 전 조회 2,337
13년 전 조회 4,618
13년 전 조회 1,335
13년 전 조회 1,423
13년 전 조회 1,568
13년 전 조회 4,685
13년 전 조회 2,037
13년 전 조회 2,244
13년 전 조회 2,265
13년 전 조회 1,544
13년 전 조회 1,417
13년 전 조회 1,579
13년 전 조회 2,400
13년 전 조회 1,745
13년 전 조회 2,046
13년 전 조회 3,230
13년 전 조회 1,729
13년 전 조회 2,034
13년 전 조회 2,103
13년 전 조회 1,517
13년 전 조회 4,213
13년 전 조회 1,985
13년 전 조회 3,553
13년 전 조회 1,853
13년 전 조회 1,568
13년 전 조회 1,615
13년 전 조회 1,463
13년 전 조회 1,998
13년 전 조회 2,148
13년 전 조회 3,484
13년 전 조회 5,049
13년 전 조회 1,487
13년 전 조회 4,021
13년 전 조회 1,417
13년 전 조회 1,901
13년 전 조회 1,522
13년 전 조회 1,850
13년 전 조회 2,596