CodeIgniter 的 HTML 表类与表单助手

发布于 2024-10-26 04:34:43 字数 384 浏览 2 评论 0原文

是否可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别闹i 2024-11-02 04:34:43

当然这是可能的,表单助手仅返回字符串,因此您可以执行类似的操作:

<?php

class Welcome extends CI_Controller {
    public function index()
    {
        $this->load->library('table');
        $this->load->helper('form');

        $data = array(
            array('Label', 'Input'),
            array('Name', form_input('name')),
            array('Firstname', form_input('firstname'))
        );

        echo $this->table->generate($data);
    }
}

Of course this is possible, the form helper return only string so you can do something like that :

<?php

class Welcome extends CI_Controller {
    public function index()
    {
        $this->load->library('table');
        $this->load->helper('form');

        $data = array(
            array('Label', 'Input'),
            array('Name', form_input('name')),
            array('Firstname', form_input('firstname'))
        );

        echo $this->table->generate($data);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文