程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php簡單防刷計數器-PHP實例

php簡單防刷計數器-PHP實例

編輯:關於PHP編程

     [導讀] php簡單防刷計數器,lt;?phprequire_once'config.php';functioncounter{nbsp;session_start;nbsp;

    $sql=selectcounterfromcounter;nbsp;$result=@MySQL_query$sql;nbsp;if!empty$resultnbsp;{nbsp;$row=mysql_fetch_array$result;nbsp;$counter=++$row[co...

    <?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'>";
       }
      }
     }
    }
    ?> 
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved