我是codeigniter的新手。我想在不同的页面上显示多视图。我创建了一个页面,在该页面上创建了一个编辑按钮。我希望当我点击编辑按钮时,我会在另一个页面上进行重定向。我怎样才能做到这一点?
这是我的代码:
class Edit extends CI_Controller
{
function __construct()
{
parent::__construct();
}
function edit()
{
$this->load->helper('url');
if($this->input->post('edit') == True)
{
redirect('edit');
}
}
}