concat 을 사용하여 날짜와 시간을 한번에 비교한다.
홈페이지 첫번째 페이지에 방문 카운터를 달때 사용한다.
<?
//특정아이피에서만 동작하게 하려면 주석해제
//if ( $_SERVER['REMOTE_ADDR'] == '218.157.10.xx' || $_SERVER['REMOTE_ADDR'] == '118.130.231.xx')
//{
//2시간전 방문자 추출
$before2h = date("Y-m-d H:i:s", strtotime("-2 hour"));
$sql = "select * from {$g5['visit_table']} where concat(vi_date,' ',vi_time) > '$before2h' order by vi_id desc";
$result = sql_query($sql);
while ($row=sql_fetch_array($result))
{
$visit_ip[] = preg_replace("/([0-9]+).([0-9]+).([0-9]+).([0-9]+)/", "\\1.♡.\\3.\\4", $row[vi_ip]);
$visit_time[] = substr($row[vi_time],0,5);
}
//오늘,어제 방문 카운터
$sql = "select * from {$g5['visit_sum_table']} order by vs_date desc limit 0,2";
$result2 = sql_query($sql);
while ($row2=sql_fetch_array($result2))
{
$visit_sum[] = $row2[vs_count];
}
?>
<div id="right_member">
<div class="right_member_title">Online : <?=count($visit_ip)?></div>
<div class="right_member1" >
<?
for($i=0; $i<count($visit_ip); $i++)
{
echo "<ul><li class='member_ip'>$visit_ip[$i]</li><li class='member_time'>$visit_time[$i]</li></ul>";
}
?>
</div>
<div class="quick_right_member2">
오늘 : <span style="color:#fff;font-weight:bold;"><?=$visit_sum[0]?></span>
어제 : <span style="color:#fff;font-weight:bold;"><?=$visit_sum[1]?></span>
</div>
</div>
<?// }?>