답변 1개 / 댓글 1개
채택된 답변
+20 포인트
7년 전
참고만 해 보세요..
add_stylesheet('<link rel="stylesheet" href="'. $board_skin_url .'/style.css">', 0);
해당 스킨 list.skn.php 파일에서 윗 소스밑으로 아래 소스 추가!
// 해당 회원의 댓글이 있는지 체크
$tmp="select count(*) as cnt from {$write_table} where wr_is_comment=1 and mb_id='{$member['mb_id']}'";
$row=sql_fetch($tmp);
$c_count=(int)$row['cnt'];
?>
<?php if(!$c_count) { ?>
<a href="javascript:void(0);" onclick="alert('댓글을 남겨주세요');"><?php echo $list[$i]['subject']?></a>
<?php }else{ ?>
원래 사용자분의 고유 링크소스
<?php } ?>
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.