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?? 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> 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']; ?> 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 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 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
Archived
This topic is now archived and is closed to further replies.