CodeIgniter 的 HTML 表类与表单助手
是否可以在 CodeIgniter 的 HTML 表类“内部”使用 Form Helper?
这就是我的意思:
$this->load->library('table');
$this->load->helper('form');
form_open('example/function')
$data = array(
array(form_checkbox('newsletter', 'accept', TRUE), form_checkbox('newsletter', 'accept', TRUE),),
);
echo $this->table->generate($data);
Is it possible to use Form Helper "inside" HTML Table Class in CodeIgniter?
This is what I mean:
$this->load->library('table');
$this->load->helper('form');
form_open('example/function')
$data = array(
array(form_checkbox('newsletter', 'accept', TRUE), form_checkbox('newsletter', 'accept', TRUE),),
);
echo $this->table->generate($data);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然这是可能的,表单助手仅返回字符串,因此您可以执行类似的操作:
Of course this is possible, the form helper return only string so you can do something like that :