스크랩
본문
이미 스크랩된 게시물의 경우 [스크랩게시물]로 표기되게하려면 어덯게해야하나요?
스크랩된게시물과 스크랩되지않은게시물을 구분하고싶어서요
답변 1
basic 기본스킨 list.skin.php 기준으로 80라인 쯤 for문 다음에 다음과 같이 추가하시고
for ($i=0; $i<count($list); $i++) {
if($member[mb_id]) {
$mysc = sql_fetch("select count(*) as cnt from ".$g5['scrap_table']." where mb_id = '".$member[mb_id]."' and bo_table = '".$bo_table."' and wr_id = '".$list[$i]['wr_id']."'");
if($mysc[cnt] > 0){
$sc_str = "[scrap]";
} else{
$sc_str = "";
}
} else{
$sc_str = "";
}
.
.
.
.
109 라인 echo $list[$i]['icon_reply']; 다음에 아래 코드 삽입
echo $sc_str." ";
if ($is_category && $list[$i]['ca_name']) {
.
.
.
답변을 작성하시기 전에 로그인 해주세요.