我的控制器中有这个片段代码:
// load model
$this->load->model('article');
$data['article'] = $this->article->get_data_article();
// add more array in data['article']
$data['article'][] = array( 'newcontent' => 'dummy string' );
$this->load->view('index',$data);
然后我有 2 个视图,第一个是 index.php:
$this->load->view('content',$article[0]);
第二个视图是 content.php:
<?php echo $title;?> <br>
<?php echo $newcontent;?>
我在上面的第二行有错误。错误信息是:
Severity: Notice
Message: Undefined variable: newcontent
Filename: views/content.php
我的代码有什么问题?