Код: Выделить всё
public function total_count
{
$this->db->select('user_id, COUNT(user_id) as total');
$this->db->group_by('user_id');
$this->db->order_by('total', 'desc');
$query = $this->db->get('tablename', 10);
return $query->result();
}
Код: Выделить всё
$data = array(
'totalcount' => $this->mymodel->total_count(),
);
Код: Выделить всё
echo $totalcount
Подробнее здесь: https://stackoverflow.com/questions/391 ... ult-method
Мобильная версия