the result is show on my gc table its 348..
but all my rows is result is 348..
example my gc table:
faculty |
348
348
348
348
to
348
row
i want the result is only
faculty
348
$crud->callback_column('Faculty',array($this,'faculty'));
public function faculty($value, $row)
$this->db->where('classification', 'faculty');
$this->db->from('offices');
return $this->db->count_all_results();