Published
- 1 min read
count all results codeigniter
The solution for this is noted below
count all results codeigniter
Solution
$this->db->select('id');
$this->db->from('table');
$this->db->where($your_conditions);
$num_results = $this->db->count_all_results();
Try other methods by searching on the site. That is if this doesn’t work