● 그누보드 나리야빌드 메인화면 게시판 최신글 삽입 table 이름으로 자동으로 등록하기
♨ 카랜더 일정 :
2021년10월21일
링크
첨부
본문
● 그누보드 나리야빌드 메인화면 게시판 최신글 삽입 table 이름으로 자동으로 등록하기
▶ 소스 적용 방법
적용위치: R:\web\www\theme\11qkr_BS4-Basic_v5416\index\index-basic.php
상단 삽입 소스
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// R:webwwwtheme11qkr_BS4-Basic_v5416indexindex-basic.php
// WING
if($is_wing)
@include_once (G5_THEME_PATH.'/_wing.php');
//W:wwwtheme11q.kr_NB-Basiclayoutsideside-basicside.php
// 총게시물수
$write_total = sql_fetch(" select sum(bo_count_write) as sum_count_write from {$g5['board_table']} ");
$total_cnt = $write_total['sum_count_write'];
// 총코멘트수
$comment_total = sql_fetch(" select sum(bo_count_comment) as sum_count_comment from {$g5['board_table']} ");
$total_cnt2 = $comment_total['sum_count_comment'];
?>
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// R:webwwwtheme11qkr_BS4-Basic_v5416indexindex-basic.php
// WING
if($is_wing)
@include_once (G5_THEME_PATH.'/_wing.php');
//W:wwwtheme11q.kr_NB-Basiclayoutsideside-basicside.php
// 총게시물수
$write_total = sql_fetch(" select sum(bo_count_write) as sum_count_write from {$g5['board_table']} ");
$total_cnt = $write_total['sum_count_write'];
// 총코멘트수
$comment_total = sql_fetch(" select sum(bo_count_comment) as sum_count_comment from {$g5['board_table']} ");
$total_cnt2 = $comment_total['sum_count_comment'];
?>
위치에 적용 소스
coding 테이블 게시판 이름 적용
<!-- 88888888888888888888 -->
<h3 class="h3 f-lg en">
<?
// https://11q.kr/www/bbs/group.php?gr_id=coding
$gr_id = 'coding';
$sql = "select a.*,ifnull(sum( bo_count_write),0) count_sum from {$g5['group_table']} a left join {$g5['board_table']} b on a.gr_id=b.gr_id
where a.gr_id in ('AAA', 'bbb','ccc','ddd','eee','$gr_id') "; // 필요한 gr_id를 넣으면 합계가 됩니다.마지막 ID가 표시 됩니다.
$result = sql_query($sql);
while ($row = sql_fetch_array($result)) {
?>
<a href="<?php echo G5_BBS_URL ?>/group.php?gr_id=<? echo $row['gr_id']; ?>" target="_self"><? echo $row['gr_subject']; ?>_<?php echo $row['gr_id'];?></a>
(<?php echo $row['count_sum']; ?>) <!-- 게시물 리스트 출력 -->
<?php } ?>
</h3>
<hr class="hr"/>
<!-- 999999999999999999999 -->
</h3>
<hr class="hr"/>
<div class="mt-3 mb-4">
<?php echo na_widget('wr-list', 'tlist-1', 'bo_list=board rank=red'); ?>
</div>
<!-- } 위젯 끝-->
<!-- 88888888888888888888 -->
<h3 class="h3 f-lg en">
<?
// https://11q.kr/www/bbs/group.php?gr_id=coding
$gr_id = 'coding';
$sql = "select a.*,ifnull(sum( bo_count_write),0) count_sum from {$g5['group_table']} a left join {$g5['board_table']} b on a.gr_id=b.gr_id
where a.gr_id in ('AAA', 'bbb','ccc','ddd','eee','$gr_id') "; // 필요한 gr_id를 넣으면 합계가 됩니다.마지막 ID가 표시 됩니다.
$result = sql_query($sql);
while ($row = sql_fetch_array($result)) {
?>
<a href="<?php echo G5_BBS_URL ?>/group.php?gr_id=<? echo $row['gr_id']; ?>" target="_self"><? echo $row['gr_subject']; ?>_<?php echo $row['gr_id'];?></a>
(<?php echo $row['count_sum']; ?>) <!-- 게시물 리스트 출력 -->
<?php } ?>
</h3>
<hr class="hr"/>
<!-- 999999999999999999999 -->
</h3>
<hr class="hr"/>
<div class="mt-3 mb-4">
<?php echo na_widget('wr-list', 'tlist-1', 'bo_list=board rank=red'); ?>
</div>
<!-- } 위젯 끝-->
☞ https://11q.kr 에 등록된 자료 입니다. ♠ 정보찾아 공유 드리며 출처는 링크 참조 바랍니다♠
뷰PDF 1,2
office view
관련자료
-
이전
-
다음
댓글목록
등록된 댓글이 없습니다.