I have a cakePHP application with an advanded search section. When a user applys filters, they are lost when they navigate to an indivual record and then return to search page.
How / What is the best way to keep “memory” of this information and re apply it on page load?
Thanks Paul
Try storing the search parameters in the session. Note that this isn’t something that CakePHP can bake for you. You’ll need to implement this yourself.