gpt4 book ai didi

php - 页面加载时显示查询结果

转载 作者:行者123 更新时间:2023-11-30 21:58:09 25 4
gpt4 key购买 nike

我用codeigneter
我想在单击菜单显示查询时显示查询结果
我已经在模型中查询了,在控制器中已经调用了它
但是当我单击显示查询菜单时,查询结果不显示

这是我的代码:

控制者

function index()
{
// Use a model to retrieve the results.
$detail["result"]=$this->tracking_model->ticketOpen();
$this->load->model('tracking_model');

// Pass the results to the view.
$this->load->view('ticket_open_view',$detail);
}


模型:

function ticketOpen()
{

$getTiketOpen=$this->db->query("myquerry");
return $getTiketOpen->result();

}


我的看法:

    <?php foreach ($result as $row) { ?>

<tr>
<td><?php echo $row->ticket_id; ?></td>
</tr>

最佳答案

您必须先加载模型,然后再调用模型方法。

function index()
{
// Use a model to retrieve the results.
$this->load->model('tracking_model');
$detail["result"]=$this->tracking_model->ticketOpen();


// Pass the results to the view.
$this->load->view('ticket_open_view',$detail);
}


我的建议是在__construct函数(MAGIC函数)中加载模型和库,然后您就不需要以其他方法加载模型或库了。

希望对您有所帮助...谢谢。

关于php - 页面加载时显示查询结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44361377/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com