我非常迷恋一个问题。我经历了很多与此有关的解决方案,但没有找到解决我错误的方法。
这是我面临的错误消息,我使用print_r查看输出是什么,但也无济于事。
我的控制器- Search.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Search extends CI_Controller {
function index(){
$this->load->model("ModSearch");
$data["get_ztable"] = $this->ModSearch->get_zscore();
$data["get_course"] = $this->ModSearch->getCourse();
$data["get_stream"] = $this->ModSearch->getStream();
$data["get_district"] = $this->ModSearch->getDistrict();
$data["get_uni"] = $this->ModSearch->getUniversity();
$this->load->view('addZscore',$data);
}
模型- ModSearch.php
public function get_zscore(){
$query = $this->db->get('tbl_zscore');
return $query;
}
查看- addZscore.php
<table style="width:50%">
<tr>
<th>Z ID</th>
<th>Z Score</th>
</tr>
<?php echo print_r($get_ztable);?>
<?php
if($get_ztable->num_rows() > 0)
{
foreach ($get_ztable as $row)
{
?>
<tr>
<td><?php echo $row->z_id; ?></td>
<td><?php echo $row->z_score; ?></td>
</tr>
<?php
}
}else{
echo 'Database Error(' . $this->db->_error_number() . ') - ' . $this->db->_error_message();
}
?>
</table>
答案 0 :(得分:1)
您必须在模型函数中进行更改,这些更改必须返回可以在视图中轻松使用的“结果”。因此,只需替换
return $query
使用
return $query->result()
或在以下视图中的foreach循环中进行更改
foreach($get_ztable as $row)
到
foreach($get_ztable->result() as $row)