brob Posted October 3, 2006 Share Posted October 3, 2006 Hi I want users to be able to click a link to a page that is restricted and once they login they are still taken to that page without having to navigate to it.Any ideas?Thanks Link to comment https://forums.phpfreaks.com/topic/22850-continue-to-page-after-login-help/ Share on other sites More sharing options...
thedarkwinter Posted October 3, 2006 Share Posted October 3, 2006 session variables...$_SESSION["requested"] = "restricted.php";once logged inheader ("location: " . $SESSION["requested"]);cheers,tdw Link to comment https://forums.phpfreaks.com/topic/22850-continue-to-page-after-login-help/#findComment-102954 Share on other sites More sharing options...
thedarkwinter Posted October 3, 2006 Share Posted October 3, 2006 Are you using sessions?I'm assuming if you are logging in users you have some sort of session running?session_start(); Link to comment https://forums.phpfreaks.com/topic/22850-continue-to-page-after-login-help/#findComment-102960 Share on other sites More sharing options...
JasonLewis Posted October 3, 2006 Share Posted October 3, 2006 You could make a hidden input box that stores the last page.say this is your login page:[code]<input type="submit" value="{$_SERVER['HTTP_REFERER']}" name="refer">[/code]then on your check page, after they login re-direct them.header("Location: ".$_POST['refer']);but the suggestions above are as good if not better then the above. but its your choice. Link to comment https://forums.phpfreaks.com/topic/22850-continue-to-page-after-login-help/#findComment-102971 Share on other sites More sharing options...
saiko Posted October 3, 2006 Share Posted October 3, 2006 well i see wat ur sayin as...xxx access's restricted.php .. then u have a login form on restricted.php if the session is not set .. but if it is set then it displays the content ?or xxx access's restricted.php .. then it redirects to a login page if the session is not set .. but if it is set then it displays the content ? Link to comment https://forums.phpfreaks.com/topic/22850-continue-to-page-after-login-help/#findComment-102999 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.