The problem i'm having is i keep on having to delete the cache or the form doesn't submit anything new. For example i typed in new data in the form and submitted and it wasn't inserted into mysql. I have to delete the cache first.
On submit.php
is a form. done.php
recieves $_POST
variables from submit.php
. At the top of done.php
i have session_cache_limiter('private_no_expire');
. I have this so when the user presses the back button and returns to done.php
, they won't get the page expired message.
I only added session_cache_limiter('private_no_expire');
to get rid of the page expired message. Is there alternative so when i user presses the back button they don't get the page expired message?... alternatively how do i solve this?