search.php 의 ssch_cate질문
본문
전에 질문을 올렷으나 어려운 작업 같아서 다시 올립니당 ㅠㅠ
<div id="ssch_cate">
<ul>
<?php
$total_cnt = 0;
foreach( $categorys as $row ){
if( empty($row) ) continue;
echo "<li><a href=\"#\" onclick=\"set_ca_id('{$row['ca_id']}'); return false;\">{$row['ca_name']} (".$row['cnt'].")</a></li>\n";
$total_cnt += $row['cnt'];
}
echo '<li><a href="#" onclick="set_ca_id(\'\'); return false;">전체분류 <span>('.$total_cnt.')</span></a></li>'.PHP_EOL;
?>
</ul>
</div>
여기중
foreach( $categorys as $row ){ if( empty($row) ) continue; echo "<li><a href=\"#\" onclick=\"set_ca_id('{$row['ca_id']}'); return false;\">{$row['ca_name']} (".$row['cnt'].")</a></li>\n"; $total_cnt += $row['cnt']; }
$categorys를 뜯어서 고치고 싶은데
이게 어디서 나오는건지 잘 모르겟더라구요 ㅠㅠ
경로가 어떻게 되는지 알려주실 수 있을까 합니다
!-->
답변을 작성하시기 전에 로그인 해주세요.