文章阅读次数的记录与显示函数php
程序员文章站
2022-05-25 14:54:09
...
/*计数函数
$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;
}
?>
$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;
}
?>
上一篇: filter, lambda 函数表达式
下一篇: php.ini 核心配备选项说明
推荐阅读
-
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法
-
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法
-
txt-在php中用TXT文件记录的功能实现统计并显示链接点击次数
-
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法_php技巧
-
文章阅读次数的记录与显示函数php_PHP教程
-
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法_php技巧
-
优化WordPress中文章与评论的时间显示,wordpress评论_PHP教程
-
文章阅读次数的记录与显示函数php
-
文章阅读次数的记录与显示函数php
-
PHP5.2中date()函数显示时间与北京时间相差8小时的解决办法