Welcome Guest, Not a member yet? Register   Sign In
Login redirect
#1

[eluser]Firestorm ZERO[/eluser]
I'm just wondering if this is best way to implement this. Opinions needed.

Basically if a user accesses a page that is requires to login, the user is redirected to the login page but after login, I want the user to be redirected back to the page he wanted.

So in my check_permissions I have the following...

Code:
if ($this->session->userdata('logged_in') == FALSE)
{
   $this->session->set_flashdata('return_url', $_SERVER['REQUEST_URI']);   // keep url before redirect
   redirect('login', 'location');
}

And in the login page I basically have (pseudocode) ...

Code:
if login failed
   if $this->session->flashdata('return_url')
      $this->session->keep_flashdata('return_url');    // keep url in flashdata
   view->login form
else
   // Success login
   $this->session->set_userdata('logged_in');

   if $this->session->flashdata('return_url')
      redirect($this->session->flashdata('return_url')
   else
      redirect('main', 'location');


Messages In This Thread
Login redirect - by El Forum - 03-10-2008, 07:42 PM
Login redirect - by El Forum - 03-10-2008, 08:02 PM
Login redirect - by El Forum - 03-10-2008, 08:17 PM



Theme © iAndrew 2016 - Forum software by © MyBB