01-14-2021, 08:04 AM
ParseError
syntax error, unexpected 'public' (T_PUBLIC), expecting end of file
APPPATH\Controllers\News.php at line 23
syntax error, unexpected 'public' (T_PUBLIC), expecting end of file
APPPATH\Controllers\News.php at line 23
Code:
16 {
17 $model = new NewsModel();
18
19 $data['news'] = $model->getNews($slug);
20 }
21 }
22
23 public function index()
24 {
25 $model = new NewsModel();
26
27 $data = [
28 'news' => $model->getNews(),
29 'title' => 'News archive',
30 ];