Answers for "count data echo codeigniter"

PHP
4

count all results codeigniter

$this->db->select('id');
$this->db->from('table');
$this->db->where($your_conditions);
$num_results = $this->db->count_all_results();
Posted by: Guest on May-19-2020
3

get result count codeigniter

public function record_count() {
   return $this->db->count_all("tablename");
}
Posted by: Guest on November-02-2020

Browse Popular Code Answers by Language