我怎样才能在codeigniter中打开thickbox
我需要在控制器或模型内的 codeigniter 中打开厚盒。 如何在控制器或模型内部编写。
结果将来自模型,所以我需要像这样在厚盒中显示结果。请提出任何解决方案。
谢谢
I need to open thickbox in codeigniter inside controller or model.
How to write there inside controller or model.
the result will be coming from model, so i need to show the result in the thickbox like that. Please suggest any solution.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
控制器:
if ( ! Defined('BASEPATH')) exit('不允许直接脚本访问');
看法:
有关更多信息,请访问:bugphp.com 或单击此处 实施Codeigniter 中的 ThickBox
controller:
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
view:
for more information visit: bugphp.com or click here Implement ThickBox in Codeigniter
您需要先学习并理解MVC。
您无法在模型或控制器中“打开”它,您应该在视图中执行此操作。
在模型中,您加载数据,在控制器中分配数据,在视图中,您将“回显”数据。
但这是非常简单的事情,与 codeigniter 无关(它与普通的 php 和/或 html 相同)。
也许您可以向我们展示您的代码到目前为止您做了什么。
You need to learn and understand MVC first.
You can't "open" it in model or controller, you should do this in your view.
In model you load the data, in controller you asign it and in view, you will "echo" the data.
But this is really simple thing and has nothing to do with codeigniter (it is the same like in ordinary php and/or html).
Maybe you can show us your code what have you done so far.