Adam_Duski Posted February 19, 2014 Share Posted February 19, 2014 Hey ,, i would to know how can i redirect the users after login or register to the same that you were in automatically without LINK ! i'm in a photo page if i login or register redirect me to photo page if i'm in another page redirect me to the same page that's what i mean Quote Link to comment Share on other sites More sharing options...
mac_gyver Posted February 19, 2014 Share Posted February 19, 2014 you would need to 'remember' which page you were on when you went to the login page, either using a session variable or passing that page in the link to the login page, then after successful login, redirect back to that remembered page. or you could just integrate your login form and form processing directly into any page that needs it and avoid this problem. Quote Link to comment Share on other sites More sharing options...
WebStyles Posted February 19, 2014 Share Posted February 19, 2014 you could just use a little bit of javascript from within your login script... this way, no matter where they login from, they'll always be taken back to the page they were before... echo '<script>history.back();</script>'; or echo '<script>history.go(-1);</script>'; Quote Link to comment Share on other sites More sharing options...
Adam_Duski Posted February 20, 2014 Author Share Posted February 20, 2014 Thank you for you WebStyles and mac_gyver Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.