Hi,
I used session to catch the form elements in an array, from any page. But after I started using session, whenever I try to go back to previous page by selecting 'Back' button on browser, there is no page and I get,
"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. "
message and ask to refresh the page.
If I refresh the page There are no user entered values. It's a very big page with many data entry elements.
If I remove session and use hidden input to store values, the values are retained even if I go back. If I want to keep the values when I am using session, what do I need to do?
I tried using dynamic building of text inputs by echoing the name itself.
ex:<INPUT TYPE="text" NAME="test" value="<?php echo $test;?>" >.
No use.
Any ideas? Do I need to do anything with Javascript?
Thanks
Satya