Answer the question
In order to leave comments, you need to log in
Codeigniter how to display the result of select_sum in a view?
Controller
public function test() {
$data['balance'] = $this->dash_model->get_test();
$this->load->view('dash/current_balance', $data);
}
public function get_test() {
$this->db->select_sum('amount');
$query = $this->db->get('operations');
/*$res = $query->result_array();*/
return $query->assoc();
/*print_r($res);*/
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question