欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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

程序员文章站 2022-05-19 11:09:30
...
/*计数函数
$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;
}
?>