Answers for "get the count of data in codeigniter"

PHP
2

row count in codeigniter

$this->db->where('EmpID >=', 5);
$query = $this->db->get('Employees');
echo $query->num_rows();

// Outputs, 4
Posted by: Guest on December-27-2020
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
2

codeigniter count rows

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

//OR 
$this->db
  ->where(['field'=>'foo'])
  ->count_all_results("tablename");
Posted by: Guest on February-21-2020

Code answers related to "get the count of data in codeigniter"

Browse Popular Code Answers by Language