1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<?php $sub_menu = "930100"; include_once('./_common.php');
auth_check($auth[$sub_menu], 'r');
$g5['title'] = '연도별 접속자집계'; include_once('./visit.sub.php');
$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); for ($i=0; $row=sql_fetch_array($result); $i++) { $arr[$row['vs_year']] = $row['cnt'];
if ($row['cnt'] > $max) $max = $row['cnt'];
$sum_count += $row['cnt']; } ?>
<div class="tbl_head01 tbl_wrap"> <table> <caption><?php echo $g5['title']; ?> 목록</caption> <thead> <tr> <th scope="col">년</th> <th scope="col">그래프</th> <th scope="col">접속자수</th> <th scope="col">비율(%)</th> </tr> </thead> <tfoot> <tr> <td colspan="2">합계</td> <td><strong><?php echo number_format($sum_count) ?></strong></td> <td>100%</td> </tr> </tfoot> <tbody> <?php $i = 0; $k = 0; $save_count = -1; $tot_count = 0; if (count($arr)) { foreach ($arr as $key=>$value) { $count = $value;
$rate = ($count / $sum_count * 100); $s_rate = number_format($rate, 1);
$bg = 'bg'.($i%2); ?>
<tr class="<?php echo $bg; ?>"> <td class="td_category"><a href="./visit_month.php?fr_date=<?php echo $key ?>-01-01&to_date=<?php echo $key ?>-12-31"><?php echo $key ?></a></td> <td> <div class="visit_bar"> <span style="width:<?php echo $s_rate ?>%"></span> </div> </td> <td class="td_numbig"><?php echo number_format($value) ?></td> <td class="td_num"><?php echo $s_rate ?></td> </tr>
<?php } } else { echo '<tr><td colspan="'.$colspan.'" class="empty_table">자료가 없습니다.</td></tr>'; } ?> </tbody> </table> </div>
<?php include_once('./admin.tail.php'); ?>
|