hi!
here is my problem :
I have a dynamic php web site (so each page must always be loaded off the server). But in the same time, I'd like to allow users to be able to use their back button to go back to a form while keeping the info in the form.
What's the best way to do that? Because if I allow caching for istance by using session_cache_limiter("private"), then some part of my dynamic pages are no longer dynamic because the content is not refreshed at all becausing the cached version of the page is used.
Thanks for any help or advices!
Alex