코멘트수가 하위모든 갤러리에도 추가되는 현상.. 정보
코멘트수가 하위모든 갤러리에도 추가되는 현상..본문
if ($list[$i][comment_cnt])
$comment_cnt = "{$list[$i][comment_cnt]}";
$comment_cnt = "{$list[$i][comment_cnt]}";
위에 list.php인데 혹시 문제가 있는지 싶네요.
자꾸 하위 갤러리에도 코멘트수가 표시가 되서요.
코멘트 달지도 않았는데...
한번만 질문하고 나서 답이 없으면 어떻게든 해봐야 겠네요^^
그럼 아시는분 답변 부탁드립니다.
댓글 전체
if ($list[$i][comment_cnt])
$comment_cnt = "{$list[$i][comment_cnt]}";
위엣걸 지우고
$comment_cnt = "";
if ($list[$i][comment_cnt])
$comment_cnt = " <a href=\"{$list[$i][comment_href]}\"><span style='font-size:7pt;'>{$list[$i][comment_cnt]}</span></a>";
이렇게 하니까 중복되는 현상이 사라졌습니다...
하루종일 낑낑대면서 해보니 되네요..^^
$comment_cnt = "{$list[$i][comment_cnt]}";
위엣걸 지우고
$comment_cnt = "";
if ($list[$i][comment_cnt])
$comment_cnt = " <a href=\"{$list[$i][comment_href]}\"><span style='font-size:7pt;'>{$list[$i][comment_cnt]}</span></a>";
이렇게 하니까 중복되는 현상이 사라졌습니다...
하루종일 낑낑대면서 해보니 되네요..^^