g4s 13-04-26일자 코드 반영
This commit is contained in:
@ -1,24 +1,24 @@
|
||||
<?
|
||||
<?php
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
global $is_admin;
|
||||
?>
|
||||
|
||||
<link rel="stylesheet" href="<?=$visit_skin_url?>/style.css">
|
||||
<link rel="stylesheet" href="<?php echo $visit_skin_url ?>/style.css">
|
||||
|
||||
<section id="visit">
|
||||
<div>
|
||||
<h2>접속자집계</h2>
|
||||
<dl>
|
||||
<dt>오늘</dt>
|
||||
<dd><?=number_format($visit[1])?></dd>
|
||||
<dd><?php echo number_format($visit[1]) ?></dd>
|
||||
<dt>어제</dt>
|
||||
<dd><?=number_format($visit[2])?></dd>
|
||||
<dd><?php echo number_format($visit[2]) ?></dd>
|
||||
<dt>최대</dt>
|
||||
<dd><?=number_format($visit[3])?></dd>
|
||||
<dd><?php echo number_format($visit[3]) ?></dd>
|
||||
<dt>전체</dt>
|
||||
<dd><?=number_format($visit[4])?></dd>
|
||||
<dd><?php echo number_format($visit[4]) ?></dd>
|
||||
</dl>
|
||||
<? if ($is_admin == "super") { ?><a href="<?=G4_ADMIN_URL?>/visit_list.php">상세보기</a><?}?>
|
||||
<?php if ($is_admin == "super") { ?><a href="<?php echo G4_ADMIN_URL ?>/visit_list.php">상세보기</a><?php } ?>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user