RSS订阅
PHP程序员站--WWW.PHPERZ.COM  
网站地图
高级搜索
收藏本站

 当前位置:主页 >> PHP基础 >> 基础文章 >> 文章内容
PHP简单防刷计数器
[收藏此页[打印本页]   
来源:互联网  作者:longen_516  发布时间:2007-12-31

原文:http://www6.blog.163.com/article/-2jc4-wWsVhP.html
以下为引用的内容:
<?php
require_once('config.php');
function counter()

 session_start();
 $sql="select counter from counter";
 $result=@mysql_query($sql);
 if(!empty($result))
 {
  $row=mysql_fetch_array($result);
  $counter=++$row[counter];
  if(!$_SESSION['counter'])
  {
   $query="update counter set counter=$counter"; phperz.com
   $result=@mysql_query($query);
   if($result)
   {
    $_SESSION['counter']=true;
   }
  }
  $counter_len=strlen($counter);
  for($i=0;$i<$counter_len;$i++)
  {
   $number=substr($counter,$i,1);
   if(isset($number))
   {
    echo "<img src='image/".$number.".gif'>";
   }
  }
 }
}
?>

 
 相关文章
 
发表评论
全部评论(0条)
 
 站内搜索
 热门搜索 基础  mysql  url  adodb
高级搜索 网站地图 站长工具 IP查询 收藏本站
 热点文章
 随机推荐
网站首页 | 网站地图 | 高级搜索 | RSS订阅
PHP程序员站 Copyright © 2007,PHPERZ.COM All Rights Reserved 粤ICP备07503606号 联系站长