如何在codeigniter中的不同页面上显示多个视图

时间:2013-02-09 06:15:18

标签: php javascript mysql codeigniter

嘿家伙我是codeigniter的新手我想在不同的页面上显示多重视图..我创建一个页面,我在其上创建一个编辑按钮,我希望当我点击编辑按钮我在另一页面上重新...我能做到吗。请帮助 这是我的代码:

class Edit extends CI_Controller
{
    function __construct()
    {
            parent::__construct();
    }
    function edit()
    {
        $this->load->helper('url');
        if($this->input->post('edit') == True)
        {
            redirect('edit');
        }
    }
}

2 个答案:

答案 0 :(得分:1)

该按钮将在视图上,这意味着在点击视图上的按钮时,它应该重定向到其他页面(视​​图):

在视图上使用锚点:

 <?php echo anchor('controller_name/function_name', 'acnchor_name'); ?>

 <?php echo anchor('Edit/edit', 'edit'); ?>

其中edit必须是函数和视图的名称。

现在点击它会在视图上显示链接,它会重定向到编辑视图。

希望能帮到你!

答案 1 :(得分:1)

查看1 :(您的链接存在的位置)

<?php echo anchor('Edit/edit', 'Edit Value'); // Here Edit is your controller and edit is the function name. ?>

在编辑控制器中,修改如下:

class Edit extends CI_Controller
{
    function __construct()
    {
            parent::__construct();
    }

    function edit()
    {
        $this->load->helper('url');
        if($this->input->post('edit') == True)
        {
            //redirect('edit'); //Do not use this as this line will call the same function again.
            $this->load->view('edit_view'); // where edit_view.php is present in your views directory. 
        }
    }
}

希望这有帮助。