为了账号安全,请及时绑定邮箱和手机立即绑定

在Codeigniter中重置密码后如何重定向

在Codeigniter中重置密码后如何重定向

PHP
开心每一天1111 2021-04-26 09:17:58
我有一个重置密码功能。我想知道成功重置密码后如何将用户重定向到登录页面。这是我的代码。public function UpdatePassword(){    $tok = $_SESSION['token'];    $newpass = md5($this->security->xss_clean($this->input- >post('newpass')));    $confpass = md5($this->security->xss_clean($this->input- >post('confpass')));        if($newpass == $confpass){            $this->db->where('password', $tok);            $this->db->update('user', array('password' => $confpass));            if($this->db->affected_rows() > 0){            return true;            }else{            return false;            }           }        else{            $this->session->set_flashdata('error_submit',  'new and conf does not match');            redirect(base_url('Login/resetpassword'));        }        //redirect(base_url('Login/Login'));    }
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 107 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信