Hi All, Id love some advice on this, I am really going crazy. In my webfolder, I have stripped down my problem to a simple select box as follows:
<form action="f2.php" method="POST" id="book">
<select name="mybox" id="mybox">
<option value="bob" selected="selected">bob</option>
<option value="peter">Peter</option>
<option value="john">John</option>
<option value="sue">Sue</option>
</select>
<input name="submit" type="submit" value="submit" />
The only other thing is this folder is a blank f2.php file and a .htaccess with php_value session.auto_start set to 1. My problem is that if I select say "john" from the select box, submit to f2.php, then press the back browser button, the select box is reset. If I turn auto_start to 0, the browser remembers the "john" value correctly.
This is a major issue for me as I developed my PHP site with sessions and need it set to 1. Can anyone advise on this as I have never come accross this before, and cant find anyone with the same issue anywhere, which is driving me even more crazy