[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 458건 8 페이지
  • RSS
기술자료 목록
열람
그누보드   12727  2017-09-19 01:05 ~ 2018-10-30 20:55  
317
그누보드   13416  2017-09-18 14:03  
316
그누보드   11013  2017-09-15 22:21  
315
그누보드   10568  2017-09-15 11:08  
314
그누보드   11653  2017-09-07 01:01 ~ 2017-12-21 14:22  
313
그누보드   26686  2017-09-05 04:49 ~ 2023-01-05 23:39  
312
그누보드   19348  2017-09-04 07:47 ~ 2019-09-26 22:55  
311
그누보드   19304  2017-08-31 14:34 ~ 2023-04-17 13:00  
310
그누보드   9830  2017-08-22 02:32 ~ 2017-08-22 00:00  
309
그누보드   14161  2017-08-22 02:26 ~ 2021-06-23 13:35  
308
그누보드   20117  2017-08-08 15:44  
307
그누보드   13827  2017-07-28 15:32  
306
그누보드   18171  2017-07-25 01:41 ~ 2017-07-28 00:00  
305
그누보드   11924  2017-07-17 13:16  
304
그누보드   12524  2017-07-13 12:50 ~ 2018-12-04 18:46  
303
그누보드   13352  2017-07-12 19:25 ~ 2018-04-11 10:20  
302
그누보드   10772  2017-07-02 20:32 ~ 2021-08-02 21:45  
301
그누보드   17675  2017-07-02 01:41 ~ 2017-11-01 16:16  
300
그누보드   15128  2017-06-30 02:56 ~ 2017-07-02 00:00  
299
그누보드   10119  2017-06-29 18:46  

검색

해피정닷컴 정보

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

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