그누보드 [G5] 접속자 방문자수 그래프
페이지 정보
본문
기능 변화는 없으며, 그래프를 보여주는 이미지는 https://sir.kr/g4_skin/74865 에서 다운받으세요.
아래 내용을 그누보드5 / plugin / m3counter / m3counter.php 로 저장합니다.
카운터 그래프를 보여주고싶은 곳에 <?php include_once G5_PLUGIN_PATH."/m3counter/m3counter.php"; ?> 를 추가합니다.
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 방문자를 그래프로 보여주는 플러그인 by mahler83
// ver 1.11 2009-04-13
// 그누보드용 카운터입니다.
// 세팅 (사정에 맞게 설정해서 쓰세요)
$bar_num = 6; // 막대의 개수입니다.
$bar_height = 40; // 막대의 최대 높이입니다.
$bar_width = 11; // 막대의 너비입니다.
$bar_interval = 12; // 막대 사이의 간격입니다.
$text_size = 7; // 글씨 크기입니다
$yoil = array("Sun"=>"일", "Mon"=>"월", "Tue"=>"화", "Wed"=>"수", "Thu"=>"목", "Fri"=>"금", "Sat"=>"토"); // 요일을 한글로 바꿔주기 위한 녀석입니다.
// 쿼리
$sql = "select MAX(vs_count) as max from ".$g5['visit_sum_table']." order by vs_date desc LIMIT ".$bar_num." ";
$temp = sql_fetch($sql);
$max = $temp[max];
$sql = "select * from ".$g5['visit_sum_table']." order by vs_date desc LIMIT ".$bar_num."";
$query = sql_query($sql);
for($i=0; $i<$bar_num; $i++) {
$visit_arr[$bar_num - $i - 1] = sql_fetch_array($query);
}
?>
<style>
.m3count_digit { font-size:<?php echo $text_size; ?>pt; }
.m3today { color:#00F; }
.m3bottom { border-bottom:solid 3px #BA9; vertical-align:bottom; }
#m3count_tbl { text-align:center; border-collapse:collapse; margin:0; padding:0; }
#m3count_tbl td { margin:0; padding:0; width:<?php echo $bar_interval+$bar_width;?>px;}
#m3count_title { text-align:center; font-weight:bold; margin:0; padding-bottom:5px; }
</style>
<div id="m3count">
<p id="m3count_title">최근 방문자</p>
<table id="m3count_tbl">
<tr valign="bottom">
<?php
for($i=0; $i<$bar_num; $i++) { // 사람수, 그래프 출력
?>
<td valign="bottom" class="m3bottom" title="<?php echo $yoil[date("D",strtotime($visit_arr[$i]['vs_date']))]; ?>">
<span class="m3count_digit<?php echo $i==$bar_num-1?" m3today":""; ?>"><?php echo $visit_arr[$i]['vs_count']; ?></span><br />
<img src="<?php echo G5_PLUGIN_URL."/m3counter"; ?>/graph.gif" style="width:<?php echo $bar_width; ?>px;height:<?php echo ceil($visit_arr[$i]['vs_count']/$max*$bar_height); ?>px;" />
</td>
<?php
}
?>
</tr>
<tr>
<?php
for($i=0; $i<$bar_num; $i++) { // 날짜 2자리수 출력
?>
<td class="m3count_digit<?php echo $i==$bar_num-1?" m3today":""; ?>"><?php echo substr($visit_arr[$i]['vs_date'], -2); ?></td>
<?php
}
?>
</tr>
</table>
</div>
댓글목록
허당빵님의 댓글
허당빵 메일보내기 이름으로 검색 작성일
어? m3counter.php로 저장할 다음의 내용이 생략이 되었네요~
죄송합니다....자꾸 이런 것만 보이지...ㅜ
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
// 방문자를 그래프로 보여주는 플러그인 by mahler83
// ver 1.11 2009-04-13
// 그누보드용 카운터입니다.
// 그누보드4 https://sir.kr/g4_skin/74865
// 그누보드5 https://sir.kr/g5_tip/5240
// 세팅 (사정에 맞게 설정해서 쓰세요)
$bar_num = 8; // 막대의 개수입니다.
$bar_height = 50; // 막대의 최대 높이입니다.
$bar_width = 25; // 막대의 너비입니다.
$bar_interval = 12; // 막대 사이의 간격입니다.
$text_size = 7; // 글씨 크기입니다
$yoil = array("Sun"=>"일", "Mon"=>"월", "Tue"=>"화", "Wed"=>"수", "Thu"=>"목", "Fri"=>"금", "Sat"=>"토"); // 요일을 한글로 바꿔주기 위한 녀석입니다.
// 쿼리
$sql = "select MAX(vs_count) as max from ".$g5['visit_sum_table']." order by vs_date desc LIMIT ".$bar_num." ";
$temp = sql_fetch($sql);
$max = $temp[max];
$sql = "select * from ".$g5['visit_sum_table']." order by vs_date desc LIMIT ".$bar_num."";
$query = sql_query($sql);
for($i=0; $i<$bar_num; $i++) {
$visit_arr[$bar_num - $i - 1] = sql_fetch_array($query);
}
?>