분류(카테고리) 선택시 공지사항 보이기
본문
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=16202&sca=&sfl=wr_subject%7C%7Cwr_content&stx=공지사항&page=2
if (!$sca && !$stx) {
$arr_notice = explode(',', trim($board['bo_notice']));
for ($k=0; $k<count($arr_notice); $k++) {
if (trim($arr_notice[$k])=='') continue;
$row = sql_fetch(" select * from {$write_table} where wr_id = '{$arr_notice[$k]}' ");
if (!$row['wr_id']) continue;
$list[$i] = get_list($row, $board, $board_skin_url, G5_IS_MOBILE ? $board['bo_mobile_subject_len'] : $board['bo_subject_len']);
$list[$i]['is_notice'] = true;
$i++;
}
}
else if ($sca && !$stx) {
$arr_notice = explode(',', trim($board['bo_notice']));
for ($k=0; $k<count($arr_notice); $k++) {
if (trim($arr_notice[$k])=='') continue;
$row = sql_fetch(" select * from {$write_table} where wr_id = '{$arr_notice[$k]}' and ca_name = '{$sca}' ");
if (!$row['wr_id']) continue;
$list[$i] = get_list($row, $board, $board_skin_url, G5_IS_MOBILE ? $board['bo_mobile_subject_len'] : $board['bo_subject_len']);
$list[$i]['is_notice'] = true;
$i++;
}
}
else if 이후 추가
전체 목록에서는 글들이 보이는데 분류(카테고리)를 선택하면 글도 없어지고 공지도 보이지 않습니다.
어떤 부분이 문제인지 조언 부탁드립니다..ㅜㅜ
답변을 작성하시기 전에 로그인 해주세요.