I had a problem using a FORM with POST method when user of my website was using the back button. The page requested a refresh to be able to see again the FORM.
To solve the problem I used :
<?php
session_cache_limiter('private, must-revalidate');
?>
*You need to write this line before any output
Hope that will help some of you ;)
[P]