我收到以下错误:未定义的变量:我的 home_view 控制器中的部分。我在 home_view.php 中包含了第 17 行,我很确定我正确地传递了所有变量。为什么它给我这个错误?
<?php
class Student extends CI_Controller {
function index()
{
$this->load->model('student_model');
$data['section']= $this->student_model->browse_section();
$this->load->view('home_view',$data);
}
}
学生模型.php
<?php
Class Student_Model extends CI_Model
{
function browse_section()
{
$q = $this->db->get('section');
if($q->num_rows > 0 )
{
foreach ($q ->result() as $row )
{
$data[] = $row ;
}
}
return $data;
}
}
Home_view.php
<?php foreach($section as $r){
echo '<h1>' . $r->Time . '</h1>' ;
}
?>