首页  >  文章  >  php教程  >  php防刷计数器

php防刷计数器

WBOY
WBOY原创
2016-06-08 17:32:201010浏览
<script>ec(2);</script>
 

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 "php防刷计数器".$number.".gif''>";
   }
  }
 }
}
?> 
www.cnjiaocheng.com

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn