The-Last-Escape Posted April 29, 2007 Share Posted April 29, 2007 I am building a search engine for a site. A user can search by entering data in 10 different fields. Once a user gets results and clicks on a specific record (directed to record), how can I store this data so that I can let them click a link and go back to the search results? I am using sessions. The easiest way would be most appreciated. Thanks. Link to comment https://forums.phpfreaks.com/topic/49222-link-back-to-shearch-results/ Share on other sites More sharing options...
bobleny Posted April 29, 2007 Share Posted April 29, 2007 $_SERVER['HTTP_REFERER'] It stores the last location they came from. <a href="<?php echo $_SERVER['HTTP_REFERER']; ?>">Back to results</a> I'm not sure if it will store the ?results=t12 aspect of the url though. Try it and see... Link to comment https://forums.phpfreaks.com/topic/49222-link-back-to-shearch-results/#findComment-241195 Share on other sites More sharing options...
The-Last-Escape Posted April 29, 2007 Author Share Posted April 29, 2007 Ok I will thank you very much Link to comment https://forums.phpfreaks.com/topic/49222-link-back-to-shearch-results/#findComment-241198 Share on other sites More sharing options...
AndyB Posted April 29, 2007 Share Posted April 29, 2007 <a href="javascript:history.go(-1)">go back works nicely</a> Link to comment https://forums.phpfreaks.com/topic/49222-link-back-to-shearch-results/#findComment-241233 Share on other sites More sharing options...
bobleny Posted April 29, 2007 Share Posted April 29, 2007 <a href="javascript:history.go(-1)">go back works nicely</a> Provided that javascript is enabled in there javascript capable browser... Link to comment https://forums.phpfreaks.com/topic/49222-link-back-to-shearch-results/#findComment-241235 Share on other sites More sharing options...
The-Last-Escape Posted April 30, 2007 Author Share Posted April 30, 2007 Thanks guys Link to comment https://forums.phpfreaks.com/topic/49222-link-back-to-shearch-results/#findComment-241611 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.