ecshop给文章页增加一个浏览次数

时间:2024年02月05日

/

来源:网络

/

编辑:佚名

如何给ecshop的文章增加浏览次数的功能。ecshop默认是没有浏览次数的功能。
但可以通过修改ecshop文章管理表字段和程序。来实现对ecshop文章页面浏览次数进行统计。
1:修改ecshop文章表.
alter table ecs_article add column click_count int(1) default  0;//增加统计浏览次数的字段。
2:在文章详细页面增加以下程序。
$db -> query("update ".$ecs->table('article')." set click_count=click_count + 1 where article_id = '$article_id'");
3:详细页面显示文章浏览次数
$count = $db -> getOne("select click_count from  ".$ecs->table('article')." where article_id = '$article_id'");
$smarty -> assign('count',$count);
4:详细页面调用。
文章浏览次数:{$count}次。
以上就完成了ecshop详细页面统计和调用。
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。