Hi!
I've got a series of forms, the field values of which are stored as session variables. In some pages, users will select objects in successive operations. Since I'd like them to be able to go back to a previous page without going through all of these successive steps, I've provided a button:
<input type="button" value="Back"
onClick = "window.location = '../../previous_page.php';">
In Netscape, this works fine. The 'previous_page' shows all the session-stored field values. In explorer, however, the shown form is now empty, although the session variables are still written out in the session file. Refreshing the page helps, but the users shouldn't have to do that. Also, using a link works fine:
<a href='../../previous_page.php'>Back</a>
Does anyone know why session variables aren't visible, using the button?
Thanks,
Maria