>  기사  >  php教程  >  php统计静态html页面浏览访问次数代码

php统计静态html页面浏览访问次数代码

WBOY
WBOY원래의
2016-05-25 16:42:171795검색

count.php,代码如下:

$aid  = isset( $_GET['aid'] )?$_GET['aid']:''; 
$t = isset( $_GET['t'] )?$_GET['t']:''; 
if( intval( $aid ) ) 
{ 
    if( $t =='show' ) 
    { 
        echo "document.write('120');"; 
    } 
    else 
    { 
        $conn = mysql_connect('www.phprm.com','root','root') ;   
        $sql = "Update test set click_num = click_num+1 where aid ='$aid'"; 
        mysql_db_query('db',$sql,$conn); 
    } 
}

html代码如下:

显示浏览次数

增加浏览次数

我们只要把这段代码放到html页面,再把当前html 页面的id给aid就行了,这样你的静态页面的访问次数你也可以把握知道了.


文章地址:

转载随意^^请带上本文地址!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.