Поэтому я хочу напечатать последнюю дату в столбце date_data.
В модели:
Код: Выделить всё
public function last_record()
{
$query = $this->db->select('LAST(date_data)');
$this->db->from('date_data');
return $query;
}
Код: Выделить всё
$last_data = $this->attendance_m->last_record();
var_dump($last_data);
Подробнее здесь: https://stackoverflow.com/questions/346 ... odeigniter
Мобильная версия