Welcome Guest, Not a member yet? Register   Sign In
how to redirect back url
#2

You can try this:

PHP Code:
/**
 * Method to redirect to the previous page
 *
 * Add to one of your helpers
 *
 * USEAGE: redirectPreviousPage();
 */
if ( ! function_exists('redirectPreviousPage'))
{
 
   function redirectPreviousPage()
 
   {
 
       if (isset($_SERVER['HTTP_REFERER']))
 
       {
 
           header('Location: '.$_SERVER['HTTP_REFERER']);
 
       }
 
       else
        
{
 
           header('Location: http://'.$_SERVER['SERVER_NAME']);
 
       }
 
       
        exit
;
 
   }
}

redirectPreviousPage(); 
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
how to redirect back url - by demonicinn - 10-19-2016, 02:46 AM
RE: how to redirect back url - by InsiteFX - 10-19-2016, 03:35 AM
RE: how to redirect back url - by demonicinn - 10-19-2016, 03:48 AM
RE: how to redirect back url - by demonicinn - 10-19-2016, 03:49 AM
RE: how to redirect back url - by d4jk4 - 10-21-2016, 09:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB