ecshop文章浏览次数二次开发

2010-04-29 09:58 来源:www.chinab4c.com 作者:admin

     昨天有个朋友问我如何给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详细页面统计和调用。

    相关文章:

    ecshop修改文章标题加红

     ecshop文章发布

   来源:中国B4C电子商务