0

私の問題は、ビューのボタンを押した後 (つまり、post 配列を設定した後) にid発生するため、if 条件内に入るとパラメーターを失うことです (つまり、変数を使用できません)。submit

public function action_resetpassword()
{
    $this->template->content = View::factory('user/password/reset')
    ->bind('message', $message)
    ->bind('errors', $errors);

    if (HTTP_Request::POST == $this->request->method()) 
    {           
        $id = $this->request->param('id');
4

1 に答える 1