Newbie php question
I have a textbox where a user searches for something and a bunch of results are returned (search() method in the controller) when i click on a link, i want some more information to be displayed (searchMore() method in controller).
Questions
1) How can I go back to the the same search.ctp page instead of creating a new search_more.ctp ? Use elements or php includes ? Use redirects ? 2) How can I retain the user input data on the text box when I go back there from searchMore() ? Does cakephp provide any helpers for sessions and such ?
Thanks