Я хочу посчитать все строки, активные сегодня
Но не могу заставить их посчитать
Модель
public function aantal_externe_today()
{
$this->db->select_count('doel');
$this->db->where('afmeldtijd','00:00:00');
$data = $this->db->get();
return $data->result();
}
контроллер
public function count_ex()
{
$data['count_ex'] = $this->person->aantal_externe_today();
$this->load->view('my_view',$data);
}
просмотр
Подробнее здесь: https://stackoverflow.com/questions/370 ... odeigntier