shadiadiph Posted April 14, 2009 Share Posted April 14, 2009 How can I find out the previous page that was visited or the current page i am on i am sure it has something to do with referer?? Quote Link to comment https://forums.phpfreaks.com/topic/153993-solved-finding-the-previous-page-that-was-visited/ Share on other sites More sharing options...
MasterACE14 Posted April 14, 2009 Share Posted April 14, 2009 I 'think' you can do it like this to work out the previous page... <script> document.write(history.go(-1)); </script> Quote Link to comment https://forums.phpfreaks.com/topic/153993-solved-finding-the-previous-page-that-was-visited/#findComment-809414 Share on other sites More sharing options...
thebadbad Posted April 14, 2009 Share Posted April 14, 2009 Or check the HTTP referer in PHP: <?php echo $_SERVER['HTTP_REFERER']; ?> Quote Link to comment https://forums.phpfreaks.com/topic/153993-solved-finding-the-previous-page-that-was-visited/#findComment-809418 Share on other sites More sharing options...
MasterACE14 Posted April 14, 2009 Share Posted April 14, 2009 Or check the HTTP referer in PHP: <?php echo $_SERVER['HTTP_REFERER']; ?> that's the one I was looking for! lol Quote Link to comment https://forums.phpfreaks.com/topic/153993-solved-finding-the-previous-page-that-was-visited/#findComment-809420 Share on other sites More sharing options...
shadiadiph Posted April 14, 2009 Author Share Posted April 14, 2009 thanks Quote Link to comment https://forums.phpfreaks.com/topic/153993-solved-finding-the-previous-page-that-was-visited/#findComment-809686 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.