Home >Backend Development >PHP Tutorial >用IP地址来统计访问人数!以天为间限!_PHP

用IP地址来统计访问人数!以天为间限!_PHP

WBOY
WBOYOriginal
2016-06-01 12:28:581022browse

IP地址


require (’common.inc’);
$ip=$REMOTE_ADDR;
$current=getdate(time());
$day=$current["mday"];
$query="select * from count";
$result=mysql_db_query(’football’,$query,$link);
while($row=mysql_fetch_row($result))
{
$num=$row[2];
if (strcmp($ip,$row[0])==0 && $day==$row[1])
{
$i=1;
}
}
if ($i1)
{
$num;
echo "你是第" .$num;
echo "访问者";
$query1="insert into count values (’$ip’,$day,$num)";
mysql_db_query(’football’,$query1,$link);
}
else
{
echo "你是第" .$num;
echo "访问者";
}
?>

common.inc:

$arr_request=array();
if (count($HTTP_GET_VARS))
{
while (list($key,$value)=each($HTTP_GET_VARS))
{
$arr_request[strtolower($key)]=$value;
}
}
if (count($HTTP_POST_VARS))
{
WHILE (list($key,$value)=each($HTTP_POST_VARS))
{
$arr_request[strtolower($key)]=$value;
}
}
$link=mysql_connect("localhost","root","");
?>

库为:
football
表:
count
字段:ip->char(20)
day->int(2)
num->int(8)
这个程序稍加修改就可成为多用户记数器,而且不能作假哟!
仅作个人用!
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn