제나빌더 잘쓰고 있어요..감사합니다. > 질문답변

본문 바로가기
사이트 내 전체검색

질문답변

서버정보나 계정정보는 보안유지를 위해 관리자쪽지나 메일로 발송해 주시거나 제작의뢰 게시판을 이용해 주시면 감사하겠습니다..

제나빌더 잘쓰고 있어요..감사합니다.

페이지 정보

본문

질문
제나보드에 최신글보기 있죠?
여러 그룹게시판에서 뽑아오는거잖아요...
근데 특정한 (z6) 그룹만 안나오게 하고 싶은데 어떻게 하나요?
 
소스는 아래와 같습니다.
<?
include_once("./_common.php");
$g4[title] = "최근 게시물";
include_once("./_head.php");
$sql_common = " from $g4[board_new_table] a, $g4[board_table] b, $g4[group_table] c
               where a.bo_table = b.bo_table and b.gr_id = c.gr_id and b.bo_use_search = '1' ";
if ($gr_id)
    $sql_common .= " and b.gr_id = '$gr_id' ";
if ($view == "w")
    $sql_common .= " and a.wr_id = a.wr_parent ";
else if ($view == "c")
    $sql_common .= " and a.wr_id <> a.wr_parent ";
if ($mb_id)
    $sql_common .= " and a.mb_id = '$mb_id' ";
$sql_order = " order by a.bn_id desc ";
$sql = " select count(*) as cnt $sql_common ";
$row = sql_fetch($sql);
$total_count = $row[cnt];
$rows = $config[cf_new_rows];
$total_page  = ceil($total_count / $rows);  // 전체 페이지 계산
if (!$page) $page = 1; // 페이지가 없으면 첫 페이지 (1 페이지)
$from_record = ($page - 1) * $rows; // 시작 열을 구함
$group_select = "<select name=gr_id id=gr_id onchange='select_change();'><option value=''>전체그룹";
//$sql = " select gr_id, gr_subject from $g4[group_table] order by gr_id ";
// 제외그룹설정 root님
// html , banner , guest 라는 그룹은 제외시킴
$sql = " select * from $g4[group_table] where gr_id not in ('guest') order by gr_1";
$result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++)
{
    $group_select .= "<option value='$row[gr_id]'>$row[gr_subject]";
}
$group_select .= "</select>";

$list = array();
$sql = " select a.*, b.bo_subject, c.gr_subject, c.gr_id
          $sql_common
          $sql_order
          limit $from_record, $rows ";
$result = sql_query($sql);
for ($i=0; $row=sql_fetch_array($result); $i++)
{
    $tmp_write_table = $g4[write_prefix] . $row[bo_table];
    if ($row[wr_id] == $row[wr_parent]) // 원글
    {
        $comment = "";
        $comment_link = "";
        $row2 = sql_fetch(" select * from $tmp_write_table where wr_id = '$row[wr_id]' ");
        $list[$i] = $row2;
        $name = get_sideview($row2[mb_id], cut_str($row2[wr_name], $config[cf_cut_name]), $row2[wr_email], $row2[wr_homepage]);
        // 당일인 경우 시간으로 표시함
        $datetime = substr($row2[wr_datetime],0,10);
        $datetime2 = $row2[wr_datetime];
        if ($datetime == $g4[time_ymd])
            $datetime2 = substr($datetime2,11,5);
        else
            $datetime2 = substr($datetime2,5,5);
    }
    else // 코멘트
    {
        $comment = "[코] ";
        $comment_link = "#c_{$row[wr_id]}";
        $row2 = sql_fetch(" select * from $tmp_write_table where wr_id = '$row[wr_parent]' ");
        $row3 = sql_fetch(" select mb_id, wr_name, wr_email, wr_homepage, wr_datetime from $tmp_write_table where wr_id = '$row[wr_id]' ");
        $list[$i] = $row2;
        $list[$i][mb_id] = $row3[mb_id];
        $list[$i][wr_name] = $row3[wr_name];
        $list[$i][wr_email] = $row3[wr_email];
        $list[$i][wr_homepage] = $row3[wr_homepage];
        $name = get_sideview($row3[mb_id], cut_str($row3[wr_name], $config[cf_cut_name]), $row3[wr_email], $row3[wr_homepage]);
        // 당일인 경우 시간으로 표시함
        $datetime = substr($row3[wr_datetime],0,10);
        $datetime2 = $row3[wr_datetime];
        if ($datetime == $g4[time_ymd])
            $datetime2 = substr($datetime2,11,5);
        else
            $datetime2 = substr($datetime2,5,5);
    }
    $list[$i][gr_id] = $row[gr_id];
    $list[$i][bo_table] = $row[bo_table];
    $list[$i][name] = $name;
    $list[$i][comment] = $comment;
    $list[$i][href] = "./board.php?bo_table=$row[bo_table]&wr_id=$row2[wr_id]{$comment_link}";
    $list[$i][datetime] = $datetime;
    $list[$i][datetime2] = $datetime2;
    $list[$i][gr_subject] = $row[gr_subject];
    $list[$i][bo_subject] = $row[bo_subject];
    $list[$i][wr_subject] = $row2[wr_subject];
}
$write_pages = get_paging($config[cf_write_pages], $page, $total_page, "?gr_id=$gr_id&view=$view&mb_id=$mb_id&page=");
$new_skin_path = "$g4[path]/skin/new/$config[cf_new_skin]";
echo "<script language=\"javascript\" src=\"$g4[path]/js/sideview.js\"></script>\n";
include_once("$new_skin_path/new.skin.php");
include_once("./_tail.php");
?>
-----------------------
어디서 뭘 추가해야 되나요?
추천0

댓글목록

profile_image

연후아빠님의 댓글

연후아빠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일

// html , banner , guest 라는 그룹은 제외시킴
$sql = " select * from $g4[group_table] where gr_id not in ('guest','z6') order by gr_1";

이런식으로 해보세요^^

profile_image
profile_image

연후아빠님의 댓글의 댓글

연후아빠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일

이게 맞는데~!이상하네요..모든 소스에서 저는 이걸 사용합니다~!

mainmenu.php / new.php / speedmap.php등
다른 소스를 참고해 보세요..

Total 1,640건 23 페이지
  • RSS
질문답변 목록
번호 제목 글쓴이 조회 추천 날짜
1090 소피쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10464 0 09-10
1089 주책쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7933 0 09-10
1088 디란도쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9346 0 09-12
1087 디란도쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7014 0 09-12
1086 디란도쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5646 0 09-13
1085 구룡1쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 24 0 09-14
1084 구룡1쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6848 0 09-14
1083 디란도쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 5577 0 09-14
1082 당연하지쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7378 0 09-18
1081 꼬빌쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8863 0 09-18
1080 투톤무늬소쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11933 0 09-20
1079 소피쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7991 0 09-23
1078 소피쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12452 0 09-24
1077 투톤무늬소쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9943 0 09-25
1076 알럽투데이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9074 0 09-25
1075 백작쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9357 0 09-25
1074 소피쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6929 0 09-26
1073 알럽투데이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10425 0 09-26
1072 알럽투데이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8132 0 09-27
1071 소피쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11682 0 09-27
1070 쎄엠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8023 0 09-27
1069 알럽투데이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7016 0 09-27
1068 쎄엠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 10920 0 09-27
1067 푸푸쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 9702 0 09-27
1066 알럽투데이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12612 0 09-27

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
4,585
어제
7,853
최대
8,371
전체
1,637,994
Copyright (c) 株式会社YHPLUS. All rights reserved.