私の codeigniter アプリケーションには 10 個のコントローラーがありますが、そのうち 2 個でサーバー エラーが発生しています。何が問題なのですか?
私のコントローラーで:
function index($offset='') {
$this->load->model('branch_model','branch');
.....
$limit = 5;
$data = $this->branch->page($limit, $offset);
.....
$this->load->view('branch', array(
'branch'=>$data
));
}
echo 'hi'; で挿入すると、何も表示されず、SERVER ERROR だけです。これは何ですか?