CodeIgniter Active Record - Get number of returned rows

前端 未结 11 2005
不思量自难忘°
不思量自难忘° 2020-12-12 22:48

I\'m very new to CodeIgniter and Active Record in particular, I know how to do this well in normal SQL but I\'m trying to learn.

How can I select some data from one

11条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-12 23:04

    Have a look at the result functions here:

    $this->db->from('yourtable');
    [... more active record code ...]
    $query = $this->db->get();
    $rowcount = $query->num_rows();
    

提交回复
热议问题