1)I have a form in my page. I register my form variables using session_register('var').
session_register('var1');
session_register('var2');
//form follows here
If I submit the form and use back to navigate back, I get the foll:
Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.
To resubmit your information and view this Web page, click the Refresh button.
This did not happen when i used hidden variables to pass data from one form to another.
2) How do I update my variables. Suppose if I want to change the value of a variable stored in a session, Can I go back to corresponding form & update. How does it work? I tried this but it seems to take the original values only. Is there a way to rewrite the value of variables already stored in session?
3) How can php variables be accessed from Javascript?