|
本帖最后由 jjc 于 2017-11-1 15:40 编辑
控制器页面
$res = $this->db->query('select * from fnpch_commodity');
$query = $res->result_array();
$this->load->helper('url');
$this->load->view('public/header');
$this->load->view('reception/index',$query);
视图页面
<ul>
<?php foreach($query as $val):?>
<li><a href="#" title=""><?=$val['title']?></a></li>
<?php endforeach;?>
</ul>
报错
A PHP Error was encounteredSeverity: Notice
Message: Undefined variable: query
Filename: reception/index.php
Line Number: 71
|
|