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

文章阅读次数的记录与显示函数php

文章阅读次数的记录与显示函数php

来源:  作者:网络转载  发布时间:2007-12-20
/*计数函数 $table 表名 $counname 计数存放字段 $idname ID字段名 $id 所查询的ID号 $view 保存还是查看数 作者:microrain 主页:http://www.codechina.net Email:web@codechina.net */ function counter($table,$counname,$idname,$id,$view) { //查询当前浏览数 $

/*计数函数
$table 表名
$counname 计数存放字段
$idname ID字段名
$id 所查询的ID号
$view 保存还是查看数
作者:microrain
主页:http://www.codechina.net
Email:web@codechina.net
*/

function counter($table,$counname,$idname,$id,$view) {
//查询当前浏览数
$sql="select * from $table where $idname=$id";
$result=mysql_query($sql);
$objresult=mysql_fetch_object($result);
$count=$objresult->$counname;
//更新数据库,并反回当前浏览数作为结果
$count2=$count+1;
if($view){

$sql="update $table set $counname=$count2 where $idname=$id";
mysql_query($sql);
}
return $count2;
}
?>(完)

Tags: php   函数   记录  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号