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

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

질문답변

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

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

페이지 정보

본문

질문
제나보드에 최신글보기 있죠?
여러 그룹게시판에서 뽑아오는거잖아요...
근데 특정한 (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건 21 페이지
  • RSS
질문답변 목록
번호 제목 글쓴이 조회 추천 날짜
열람중 okpcas쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 10373 0 03-30
1139 힘쓰쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 17211 0 03-31
1138 힘쓰쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 13974 0 03-31
1137 해피커뮤니티쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 9689 0 04-03
1136 용용쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8391 0 04-04
1135 davi쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 8900 0 04-04
1134 소금쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 12534 0 04-05
1133 소금쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 10106 0 04-05
1132 롤링어텍쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11761 0 04-10
1131 노인과마담쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 13662 0 04-11
1130 완두콩쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11825 0 04-17
1129 sharepia쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7209 0 04-18
1128 해뱅이쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15753 0 04-18
1127 로보트vv쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 6909 0 04-18
1126 다다쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7588 0 04-18
1125 윤범아쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8325 0 04-19
1124 완두콩쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11488 0 04-20
1123 완두콩쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 15872 0 04-20
1122 완두콩쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10082 0 04-21
1121 유후훌쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 6738 0 04-21
1120 유후훌쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 13954 0 04-21
1119 실버쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12008 0 04-21
1118 실버쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 9663 0 04-21
1117 실버쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 13682 0 04-22
1116 실버쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12656 0 04-22

검색

회원로그인

회원가입

사이트 정보

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

접속자집계

오늘
6,076
어제
7,241
최대
7,809
전체
1,412,627
Copyright (c) 株式会社YHPLUS. All rights reserved.