Firefox for some reason doesnt like to save form data.
For example, on a form on my site, the use hits submit w/ a POST request (on purpose). Say they forgot to fill in something or submitted on accident. The script checks to see if any required fields are empty() and then gives them an error message.
However, in firefox if you hit BACK it doesn't repopulate the form with the previously submitted data. IE does.
I know there is workaround to this like setting all the value parameters to the <input type> parts of the form equal to a $_SESSION var then just updating all of them when the user submits or something similar.
Firefox has a huge web presence now and i wanted to know how i can fix this without too much work.
I've already tried
header("Cache-Control: private");
Thanks.