への配列は私のモデルである:ここCodeIgniterの:ここでは、文字列変換エラー
public function count_diabetic(){
$query = $this->db->query("Select count(diabetic) as count_diabetic from member where diabetic is not NULL");
return $query->result_array();
}
public function count_hypertensive(){
$query = $this->db->query("Select count(hypertensive) as count_hypertensive from member where hypertensive is not NULL");
return $query->result();
}
は私のコントローラである:ここでは
public function home(){
$this->load->model('Jsv_model');
$data = array(
'count_diabetic' => $this->Jsv_model->count_diabetic(),
'count_hypertensive' => $this->Jsv_model->count_hypertensive()
);
$this->session->set_userdata($data);
$this->load->view('home');
}
は、私の見解は、PHPタグでである:
echo $this->session->userdata('count_diabetic');
しかし、ここでは、配列の文字列変換エラーへのエラーを示しています。 助けてください
ありがとうございました..それは働いた –
あなたは私の答えを受け入れることができますか? – Ukasyah