|
|
|
13-10-29
|
조회 1,049
|
|
|
|
13-10-29
|
조회 1,225
|
|
|
|
13-10-29
|
조회 1,915
|
|
|
|
13-10-29
|
조회 7,127
|
|
|
|
13-10-29
|
조회 1,115
|
|
|
|
13-10-29
|
조회 1,141
|
|
|
|
13-10-29
|
조회 1,069
|
|
|
|
13-10-29
|
조회 3,054
|
|
|
씨네울프
|
13-10-29
|
조회 1,749
|
|
|
|
13-10-29
|
조회 1,191
|
|
|
|
13-10-29
|
조회 1,736
|
|
|
|
13-10-28
|
조회 1,222
|
|
|
|
13-10-28
|
조회 1,927
|
|
|
|
13-10-28
|
조회 1,060
|
|
|
|
13-10-28
|
조회 1,971
|
|
|
|
13-10-28
|
조회 1,190
|
|
|
|
13-10-28
|
조회 1,711
|
|
|
|
13-10-28
|
조회 964
|
|
|
|
13-10-28
|
조회 1,712
|
|
|
|
13-10-28
|
조회 1,410
|
댓글 6개
여기 사진 아래보시면 아래 클릭시 뜨는거보이시나요? 이런식으로 하고싶은뎅 소스아시나욤
www.intrada.co.kr
여기서 롤링 최신게시물 사용중 임돵
$list[$i][href] 이 부분을 수정해 주면 될 것 같네요
$list[$i][href] = "javascript:open_content('$bo_table','$wr_id')";
스크립트 추가
<script>
function open_content(bo_table,wr_id){
url = "<?=$latest_skin_path?>/content.skin.php?bo_table="+bo_table+"&wr_id="+wr_id;
window.open(url,'POPup','top=0,left=0,width=,height,scrolling=auto');
}
</script>
이렇게 스킨 적당히 수정해주고
스킨 폴더에 content.skin.php 파일생성하고
<?
include_once("./_common.php");
if(!$bo_table && !$wr_id){
alert_close("제대로 들어와야지");
exit;
}
$write_table = $g4['write_prefix'].$bo_table;
$sql = "select * from $write_table where wr_id='$wr_id'";
$row = sql_fetch($sql);
$content = content_conv($row[wr_content],0);
?>
내용 : <?=$content?>
이렇게 될 것 같은데
테스트는 안해 봤습니다.