Hi.
I've a form with many fields(form.php) using class.FastTemplate (http://www.thewebmasters.net). When the user clicks [OK] to submit
it, another script is called to validate the fields (validate.php). If there's some wrong field, an
error message and a [BACK] button is displayed.
The [BACK] button hrefs to
"javascript:history.back(1)".
When the user clicks [BACK], the form is empty. The same happens if the user clicks the browser's back button.
I clicked 'view source -> save as -> form.html' in the browser. When I open this browser. The problem is gone.
When I remove the calls of session_start() from my PHP files, the problem is gone.
Is this problem related to the cookies session_start() uses?
Does anybody have any hint ?