PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

PHP简单防刷计数器

PHP简单防刷计数器

来源:互联网  作者:longen_516  发布时间:2007-12-31
原文: http://www6.blog.163.com/article/-2jc4-wWs
原文: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";

   $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'>";
   }
  }
 }
}
?>
Tags: php  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号