class Edit extends CI_Controller
{
function __construct()
{
parent::__construct();
}
function edit()
{
$this->load->helper('url');
if($this->input->post('edit') == True)
{
redirect('edit');
}
}
}
答案 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.
}
}
}
希望这有帮助。