$emp_id
を渡す必要はありません 。コントローラの機能は次のようになります:
function employee4()
{
$emp_id = $this->uri->segment(3);
$this->employee_model->delete_employee($emp_id);
$this->index();
}
あなたの場合、URIセグメントの値は3
です。
$emp_id
を渡す必要はありません 。コントローラの機能は次のようになります:
function employee4()
{
$emp_id = $this->uri->segment(3);
$this->employee_model->delete_employee($emp_id);
$this->index();
}
あなたの場合、URIセグメントの値は3
です。