如何从数据库中获取项的标题并将其发送到 CodeIgniter 中的标头模板
2022-08-30 19:03:59
我正在CodeIgniter中编写一个应用程序,其中我在每个控制器的每个页面上指定元标记,我已设法将其发送到我的标头模板。但是,现在我已经创建了一个应用程序,该应用程序通过CodeIgniter模型从数据库中获取信用卡及其标题。我想自动获取并使用信用卡的名称,这样我就不需要手动更改它,但我有点卡在如何继续。<title>
<title>
这是我现在的代码:
控制器
public function show($card = NULL)
{
$data['query'] = $this->Listing_model->get_card($card);
$header["page_title"] = from the model
$this->load->view('includes/header',$header);
$this->load->view('listings/listing_card',$data);
$this->load->view('includes/footer');
}
型
function get_card($card = FALSE)
{
$query = $this->db->get_where('creditcards', array('slug' => $card), 0,1);
return $query->result();
}
在创建此应用程序时,我一直在关注官方的CodeIgniter文档,但到目前为止还没有运气。任何解决方案?