0
Q:

get result count codeigniter

$this->db
  ->where(['field'=>'foo'])
  ->from("tablename")
  ->count_all_results();

//OR 
$this->db
  ->where(['field'=>'foo'])
  ->count_all_results("tablename");
3
public function record_count() {
   return $this->db->count_all("tablename");
}
1

New to Communities?

Join the community