Hello, I am using php and posting data using html form post method. I am facing problem with browser back button (page expires). I donot want to us html form get method. Any one has solution to this problem.
do you mean that once a form is posted, and then a user presses the back button it re-submits it? what you need to do is after the page has been submitted and the form dealt with user header("location: newpage.html"); to redirect the user back to the same page [or another]. this gets around that problem easily. note to use header you must not have output anything already unless you use object caching in php hope this helps