原理:每次刷新页面,执行一次某函数,某函数将数据表中的hit字段+1
不足:每次刷新,每次加1。
showInfo.html代码如下
顺便附上index.html传id的代码
本文地址:http://liuyanzhao.com/3488.html
转载请注明
不足:每次刷新,每次加1。
- public function showInfo(){
- $id = $_GET['id']; //当点击文章标题,展开文章全文页面,传过去id
- $info = M('Info');
- $info->where(array('id' => $id))->setInc('hit',1);//hit字段+1
- $arr=$info->find($id); //在showInfo.html输出
- $this->assign('data',$arr);
- $this->display();
- }
showInfo.html代码如下
- {$data.hit}
顺便附上index.html传id的代码
- <a href="__URL__/showInfo/id/{$vo.id}" >{$vo.info_title}</a>
本文地址:http://liuyanzhao.com/3488.html
转载请注明
您可以选择一种方式赞助本站
支付宝扫一扫赞助
微信钱包扫描赞助
赏