一个控制器 codeigniter 的两个视图
如何在 codeigniter 的一个控制器中使用两个视图
function index()
{
$data['title'] =" Details";
$data['courses']=$this->coursemodel->getcourse();
$data['batches']=$this->coursemodel->getbatchname();
$this->load->view('admin/fees/coursereport',$data);
}
第一个视图
$this->load->view('admin/fees/coursedetails',$data);
第二个视图
$this->load->view('admin/fees/coursereport',$data);
我的问题是如何在 codeigniter 的一个控制器中使用两个视图
How to use two views in one controller in codeigniter
function index()
{
$data['title'] =" Details";
$data['courses']=$this->coursemodel->getcourse();
$data['batches']=$this->coursemodel->getbatchname();
$this->load->view('admin/fees/coursereport',$data);
}
first view
$this->load->view('admin/fees/coursedetails',$data);
second view
$this->load->view('admin/fees/coursereport',$data);
My question is how to use two views in one controller in codeigniter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 view() 的第三个参数并将结果插入到另一个字符串中。最后,根据需要打印该字符串:
最后,在脚本末尾:
更新
我看到您更新了您的问题。如果上面的内容不是您想要的,也许这是:
这里的想法是,通过检查您真正想要的视图。这是你所需要的吗?
Use third parameter of view() and insert the result to another string. Finally, print that string as you like:
Finally, at the end of your script:
UPDATE
I see that you updated your question. If the above is not what you looking for, maybe this is:
The idea here is, by checking what view you really want. Is it what you needed?