count all records in codeigniter code example
Example 1: codeigniter count rows
$this->db
->where(['field'=>'foo'])
->from("tablename")
->count_all_results();
$this->db
->where(['field'=>'foo'])
->count_all_results("tablename");
Example 2: count all results codeigniter
$this->db->select('id');
$this->db->from('table');
$this->db->where($your_conditions);
$num_results = $this->db->count_all_results();
Example 3: get result count codeigniter
public function record_count() {
return $this->db->count_all("tablename");
}