Sorry this isnt a cross post .. i just didnt get any help from alt.php.
I have a website which utilises post forms for navigation in some areas.
Problem is, when *some* users hit the BACK button the POSTDATA
content has expired and they need to refresh the page then they get a
alert about refreshing expired data.
I am getting complaints that this is too annoying and limits the sites
useability.
For security reasons I cant swap post for get.
the header content of the page is
header('Expires : '.gmdate('D, d M Y H:i:s', time() + 600) .'GMT');
which seems to work on some browsers/systems but not others ...
I want to over-ride the users cache settings but am not sure how this
can be best achieved in respect of POST data
any help greatly appreciated.
I have a website which utilises post forms for navigation in some areas.
Problem is, when *some* users hit the BACK button the POSTDATA
content has expired and they need to refresh the page then they get a
alert about refreshing expired data.
I am getting complaints that this is too annoying and limits the sites
useability.
For security reasons I cant swap post for get.
the header content of the page is
header('Expires : '.gmdate('D, d M Y H:i:s', time() + 600) .'GMT');
which seems to work on some browsers/systems but not others ...
I want to over-ride the users cache settings but am not sure how this
can be best achieved in respect of POST data
any help greatly appreciated.
Comment