0
私はこのコンセプトのセッションとユーザエージェントライブラリを知っています。ログイン後にメンバーを現在のページにリダイレクトする最良の方法(Codeigniter)
例:彼はログインボタンをクリックすると会員は、このURL domain.com/article/news-18565
でニュースを読んで、その後どのように(CURRENTURLを取得する)domain.com/article/news-18565
に行くべきdomain.com/login
に行く前に、ログインメンバーの後Form.html
<form action="signin" method="post" accept-charset="utf-8">
<div class="form-group">
<label for="">Email:</label>
<input type="text" name="email" value="" class="form-control form-control-lg">
</div>
<div class="form-group">
<label for="">Password:</label>
<input type="password" name="password" value="" class="form-control form-control-lg">
</div>
<div class="form-group">
<input type="submit" name="submit" value="Sign in to your account" class="float-md-right btn btn-primary">
</div>
</form>
Controller.php
function index(){
$user_profile = 'user';
$this->authModel->loggedin() == FALSE || redirect($user_profile);
$rules = $this->authModel->rules;
$this->form_validation->set_rules($rules);
if($this->form_validation->run() == TRUE){
if($this->authModel->login() == TRUE){
redirect($user_profile);
}else{
$this->session->set_flashdata('error', 'That email/password combination does not exist');
redirect('signin');
}
}
}
Model.php
function login(){
$user = $this->get_by(array(
'email' => $this->input->post('email', TRUE),
'password' => $this->hash($this->input->post('password'))
), TRUE);
if(count($user)){
$data = array(
'name' => $user->name,
'email' => $user->email,
'username' => $user->username,
'loggedin' => TRUE
);
$this->session->set_userdata($data);
return TRUE;
}
}