我正在尝试将视图中的值传递给控制器函数' update_action'然后
我需要来自控制器功能的$ _POST' update_action'功能更新' 在另一个控制器。这是我的代码
public function update_action($Var_Code,$Var_Id)
{
$id_ref = $this->input->post('Number',TRUE);
$Code = $this->input->post('Code',TRUE);
$_link = 'transaction/update/'.$Var_Code.'/'.$id_ref ;
redirect(site_($_link ));
}
At another controller `my code here`
public function update( $Code,$id)
{
if (!empty($_POST))
{
// run true code
$this->template->load('template','transaction_form', $data);
}
}else
{
$this->template->load('template', 'error_pages', null);
}
问题是,我无法从update_action发送$ _post进行更新 当我运行我的代码总是加载" error_pages" 。我无法访问我的transaction_form