태그를 냑처럼 모으고 싶어요.
본문
https://sir.kr/g5_plugin/1306?sfl=wr_subject&stx=%ED%83%9C%EA%B7%B8
위 태그 기능을 이용해서 게시판에 태그기능을 추가시켰고,
지금 확인결과 정상적으로 잘됩니다.
아래 이미지처럼
list.skin.php 상단에 모으고 싶어요.
답변 1
$sql = "
select ct_tag, count(*) as cnt
from comp_tag
where bo_table = '{$bo_table}'
group by ct_tag
order by 2 desc
";
$result = sql_query($sql);
echo '<ul>';
while ($row = sql_fetch_array($result)) {
echo '<li>';
echo "{$row['ct_tag']} ({$row['cnt']})";
echo '</li>';
}
echo '</ul>';
답변을 작성하시기 전에 로그인 해주세요.