$stoday1=mktime(0,0,0,date(m,$ctime1),date(d,$ctime1),date(Y,$ctime1)); $stoday2=mktime(0,0,0,date(m,$ctime2),date(d,$ctime2),date(Y,$ctime2)); //统计当日首页被浏览的累积次数 $query='select SUM(visits) as tvisits from stream where sTime>='; $query.=$stoday1.' and sTime<'.$stoday2; $result=mysql_db_query('ajax',$query,$mlink); echo '<span class="st3">浏览首页累积次数:'; if($row=mysql_fetch_object($result)){ echo $row->tvisits; } //统计当日拜访ip的数量 $query='select * from stream where sTime>='.$stoday1; $query.=' and sTime<'.$stoday2.' order by sTime DESC'; $result=mysql_db_query('ajax',$query,$mlink);