我需要很少的活动记录帮助。我正在尝试更新我存储在数据库中的页面视图。每次 post() 函数运行时,添加 +1 。这是我的代码:
public function post($id) {
if($id == NULL){
redirect('blog');
}
else{
$this->db->where('entry_id',$id);
$this->db->set('views','views+1');
$this->db->update('entry');
请帮忙!