공지글 첫페이지만 나오게 하는방법문의합니다. > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

공지글 첫페이지만 나오게 하는방법문의합니다. 정보

공지글 첫페이지만 나오게 하는방법문의합니다.

본문

1페이지 2페이지에 위에 공지사항이 계속 나오는데요
이것을 첫페이지에만 공지사항이 나오게 하고싶어요
어떻게 해야할까요?
  • 복사

댓글 전체

bbs/list.php 에

if (!$sca && !$stx)
{
    $arr_notice = explode("\n", 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_path, $board[bo_subject_len]);
        $list[$i][is_notice] = true;

        $i++;
    }
}

이런부분이있는데

if($page==1){
if (!$sca && !$stx)
{
    $arr_notice = explode("\n", 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_path, $board[bo_subject_len]);
        $list[$i][is_notice] = true;

        $i++;
    }
}
}

이렇게 바꿔보세요
© SIRSOFT
현재 페이지 제일 처음으로