首页 > PHP

改进的IP计数器

时间:2009-06-29 14:41:07  作者:chinaitlab  我要投稿
Linux初探欢迎您的投稿,投放方法请点击这里查看,我们会定期赠送精美小礼品给优秀的投稿作者。海纳百川 取则行远!LinuxGoo欢迎您的到来。
<?
//require (’common.inc’);
$arr_request=array();
if (count($HTTP_GET_VARS))
{
while (list($key,$value)=each($HTTP_GET_VARS))
{
$arr_request[strtolow......
<?
//require (’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","kong","kong");
mysql_select_db("mywebdb");
$ip=$REMOTE_ADDR;
$current=getdate(time());
$day=$current["mday"];
$query="select * from addcount where day=\"$day\"";
$result=@mysql_query($query);
if(!$num=@mysql_num_rows($result))
$num=1;
while($row=@mysql_fetch_row($result))
{
if (strcmp($ip,$row[1])==0)
{
$i=1;
$id=$row[0];
$click=$row[3] 1;
$up="update addcount set click_count=click_count 1 where id=$id";
$result2=@mysql_query($up);
// break;
}
$total =$row[3];
}
$total ;
if(!$i){
$query1="insert into addcount (ip,day,click_count )values ('$ip','$day',1)";
mysql_db_query("mywebdb",$query1,$link);
$click=1;
}
echo "<html><head><title>计数器</title></head>";
echo "你是第" .$num."访问者<BR>";
echo "今天你第".$click."次点击<BR>";
echo "今天总点击".$total."次<BR>";

/*
表:
addcount
CREATE TABLE addcount (
id int(6) DEFAULT '0' NOT NULL auto_increment,
ip char(20) NOT NULL,
day int(2) NOT NULL,
click_count int(3) NOT NULL,
PRIMARY KEY (id)
);
*/
?>
如果您需转载 改进的IP计数器,请注明来自LinuxGoo.com,其版权归原作者所有。请广大网友留言时遵纪守法,使用文明用语。如果您在应用中有什么问题,请在下面留言,我们会尽快解答。
来顶一下
近回首页
返回首页
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
相关文章
栏目热门