AvocadoAmber/AvocadoEdition_Light/adm/visit_year.php

94 lines
2.2 KiB
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
$sub_menu = "200800";
2024-09-23 11:07:19 +09:00
include_once "./_common.php";
if (!isset($arr)) {
$arr = [];
}
2022-09-17 20:50:50 +09:00
auth_check($auth[$sub_menu], 'r');
$g5['title'] = '연도별 접속자집계';
2024-09-23 11:07:19 +09:00
include_once "./visit.sub.php";
2022-09-17 20:50:50 +09:00
$colspan = 4;
$max = 0;
$sum_count = 0;
$sql = " select SUBSTRING(vs_date,1,4) as vs_year, SUM(vs_count) as cnt
from {$g5['visit_sum_table']}
where vs_date between '{$fr_date}' and '{$to_date}'
group by vs_year
order by vs_year desc ";
$result = sql_query($sql);
2024-09-19 20:57:39 +09:00
for ($i = 0; $row = sql_fetch_array($result); $i++) {
$arr[$row['vs_year']] = $row['cnt'];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
if ($row['cnt'] > $max)
$max = $row['cnt'];
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$sum_count += $row['cnt'];
2022-09-17 20:50:50 +09:00
}
?>
<div class="tbl_head01 tbl_wrap">
2024-09-19 20:57:39 +09:00
<table>
2022-09-17 20:50:50 +09:00
<caption><?php echo $g5['title']; ?> 목록</caption>
<thead>
2024-09-19 20:57:39 +09:00
<tr>
2022-09-17 20:50:50 +09:00
<th scope="col"></th>
<th scope="col">그래프</th>
<th scope="col">접속자수</th>
<th scope="col">비율(%)</th>
2024-09-19 20:57:39 +09:00
</tr>
2022-09-17 20:50:50 +09:00
</thead>
<tfoot>
2024-09-19 20:57:39 +09:00
<tr>
2022-09-17 20:50:50 +09:00
<td colspan="2">합계</td>
<td><strong><?php echo number_format($sum_count) ?></strong></td>
<td>100%</td>
2024-09-19 20:57:39 +09:00
</tr>
2022-09-17 20:50:50 +09:00
</tfoot>
<tbody>
2024-09-19 20:57:39 +09:00
<?php
$i = 0;
$k = 0;
$save_count = -1;
$tot_count = 0;
if (count($arr)) {
foreach ($arr as $key => $value) {
$count = $value;
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$rate = ($count / $sum_count * 100);
$s_rate = number_format($rate, 1);
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
$bg = 'bg' . ($i % 2);
?>
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
<tr class="<?php echo $bg; ?>">
<td class="td_category"><a
href="./visit_month.php?fr_date=<?php echo $key ?>-01-01&amp;to_date=<?php echo $key ?>-12-31"><?php echo $key ?></a>
</td>
<td>
<div class="visit_bar">
2022-09-17 20:50:50 +09:00
<span style="width:<?php echo $s_rate ?>%"></span>
2024-09-19 20:57:39 +09:00
</div>
</td>
<td class="td_numbig"><?php echo number_format($value) ?></td>
<td class="td_num"><?php echo $s_rate ?></td>
</tr>
2022-09-17 20:50:50 +09:00
2024-09-19 20:57:39 +09:00
<?php
2022-09-17 20:50:50 +09:00
}
2024-09-19 20:57:39 +09:00
} else {
echo '<tr><td colspan="' . $colspan . '" class="empty_table">자료가 없습니다.</td></tr>';
}
?>
2022-09-17 20:50:50 +09:00
</tbody>
2024-09-19 20:57:39 +09:00
</table>
2022-09-17 20:50:50 +09:00
</div>
<?php
2024-09-23 11:07:19 +09:00
include_once "./admin.tail.php";
2022-09-17 20:50:50 +09:00
?>