[G5] 좋아요(추천) / 싫어요(비추천) 보이기 > 기술자료 | 해피정닷컴

[G5] 좋아요(추천) / 싫어요(비추천) 보이기 > 기술자료

본문 바로가기

사이트 내 전체검색

[G5] 좋아요(추천) / 싫어요(비추천) 보이기 > 기술자료

그누보드 [G5] 좋아요(추천) / 싫어요(비추천) 보이기

페이지 정보


본문

게시글에 좋아요(추천)과 싫어요(비추천)을 누른 회원정보 보는 방법입니다.


그누보드5 / skin / board / basic / view.skin.php  적당한 위치에 아래 내용을 추가합니다.


        <?php
        // 추천 조회
        $good_qry = " select count(distinct `bg_id`) as `cnt` from {$g5['board_good_table']} where bo_table='{$bo_table}' and wr_id='{$wr_id}' and bg_flag='good' ";
        $good_row = sql_fetch($good_qry);
        $good_cnt = $good_row['cnt'];
        
        if ($good_href && $good_cnt>0) {
        ?>
        
        <div style="background:#f5f5f5; padding:10px 15px;">
            <h4 style="padding:0 0 15px 0; font-size:1.2em;"> 추천리스트</h4>
            <p class="list-group-item-text">
            <?php
            // 추천 있으면 표시
            $good_qry = sql_query(" select * from {$g5['board_good_table']} where bo_table='{$bo_table}' and wr_id='{$wr_id}' and bg_flag='good' order by bg_id desc ");
            for ($good_i=0; $good_row=sql_fetch_array($good_qry); $good_i++) {
                $good_qry2 = sql_query(" select * from {$g5['member_table']} where mb_id='{$good_row['mb_id']}' ");
                $good_row2 = sql_fetch_array($good_qry2);
                
                echo "<span>";

                $field_query = "SHOW COLUMNS FROM {$g5['config_table']} WHERE `Field` = 'as_thema';";
                $field_row = sql_fetch( $field_query );
                if($field_row['Field']) { // 아미나빌더가 있으면
                    if ($good_row2['as_level']) {
                        echo "<img src='".G5_IMG_URL."/level/{$xp['xp_icon_skin']}/{$good_row2['as_level']}.gif'> ";
                    } else {
                        echo "<img src='".G5_IMG_URL."/level/{$xp['xp_icon_skin']}/guest.gif'> ";
                    }
                }
                
                if ($good_row2['mb_nick']) {
                    echo $good_row2['mb_nick'];
                } else {
                    echo "<span style='color:#a1a1a1;'>회원탈퇴</span>";
                }
                
                echo "</span> &nbsp; ";
            }
            ?>
            </p>
        </div>
        <?php
        } // 추천 조회 끝
        

        // 비추천 조회
        $nogood_qry = " select count(distinct `bg_id`) as `cnt` from ".$g5['board_good_table']." where bo_table='".$bo_table."' and wr_id='".$wr_id."' and bg_flag='nogood' ";
        $nogood_row = sql_fetch($nogood_qry);
        $nogood_cnt = $nogood_row['cnt'];
        
        if ($nogood_href && $nogood_cnt>0) {
        ?>
        
        <div style="background:#f5f5f5; padding:10px 15px;">
            <h4 style="padding:0 0 5px 0; font-size:1.2em;"> 비추천리스트</h4>
            <p class="list-group-item-text">
            <?php
            // 비추천 있으면 표시
            $nogood_qry = sql_query(" select * from {$g5['board_good_table']} where bo_table='{$bo_table}' and wr_id='{$wr_id}' and bg_flag='nogood' ");
            for ($nogood_i=0; $nogood_row=sql_fetch_array($nogood_qry); $nogood_i++) {
                
                $nogood_qry2 = sql_query(" select * from {$g5['member_table']} where mb_id='{$nogood_row['mb_id']}' ");
                $row_nogood2=sql_fetch_array($nogood_qry2);
                
                echo "<span>";

                $field_query = "SHOW COLUMNS FROM {$g5['config_table']} WHERE `Field` = 'as_thema';";
                $field_row = sql_fetch( $field_query );
                if($field_row['Field']) { // 아미나빌더가 있으면
                    if ($nogood_row2['as_level']) {
                        echo "<img src='".G5_IMG_URL."/level/{$xp['xp_icon_skin']}/{$nogood_row2['as_level']}.gif'> ";
                    } else {
                        echo "<img src='".G5_IMG_URL."/level/{$xp['xp_icon_skin']}/guest.gif'> ";
                    }
                }
                
                if ($good_row2['mb_nick']) {
                    echo $nogood_row2['mb_nick'];
                } else {
                    echo "<span style='color:#a1a1a1;'>회원탈퇴</span>";
                }
                
                echo "</span> &nbsp; ";
            }
            ?>
            </p>
        </div>
        <?php
        } // 비추천 조회 끝
        ?>



추가 작업예정인 내용 ~~~~
댓글 ajax 로 이용하기
https://sir.kr/bbs/board.php?bo_table=g4_skin&wr_id=88131
 

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 29 페이지
  • RSS
기술자료 목록
2081
MSSQL   30013  2017-09-22 18:05  
2080
그누보드   10036  2017-09-20 12:23  
2079
JavaScript   21505  2017-09-20 07:12 ~ 2018-02-28 19:06  
열람
그누보드   12736  2017-09-19 01:05 ~ 2018-10-30 20:55  
2077
HTML   30532  2017-09-18 23:09  
2076
그누보드   13424  2017-09-18 14:03  
2075
Editor   10683  2017-09-18 12:51  
2074
Editor   12401  2017-09-18 11:38 ~ 2017-12-01 05:01  
2073
그누보드   11021  2017-09-15 22:21  
2072
그누보드   10573  2017-09-15 11:08  
2071
ClassicASP   15259  2017-09-13 23:26  
2070
일반   11152  2017-09-09 06:48  
2069
호스팅   14913  2017-09-07 18:28 ~ 2018-08-28 10:51  
2068
그누보드   11657  2017-09-07 01:01 ~ 2017-12-21 14:22  
2067
그누보드   26702  2017-09-05 04:49 ~ 2023-01-05 23:39  
2066
HTML   27883  2017-09-05 04:39  
2065
일반   15669  2017-09-04 18:48  
2064
그누보드   19353  2017-09-04 07:47 ~ 2019-09-26 22:55  
2063
PHP   15638  2017-09-04 07:41  
2062
Adobe   13030  2017-09-02 03:14  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.