コントローラーからビューに配列を渡したい。以下のコードを使用しようとしました。私はそれが間違っていることを知っていますが、何を使うべきか考えられません。find()関数はテーブルからすべての行を取得し、それらの行を配列としてビューに渡したいと思います。どうすればそうできますか?
<?php
class Blog extends CI_Controller{
public function __construct(){
parent::__construct();
$this->load->model('blog_model');
}
public function index(){
$data = $this->blog_model->find(); //which gets all entries from table
$this->load->view('template/header');
$this->load->view('template/content', $data);
$this->load->view('template/footer');
}
public function create(){
$this->blog_model->create();
}
public function delete(){
}
}
?>