The form is cleared after the button is removed from the browser. Solution:

Source: Internet
Author: User

Q: Why are all fields cleared after I click the back button of the browser?

A: This is because you have used the session_start function on your form submission page. This function forces the current page not to be cached. Solution: After your Session_start function, add

The code is as follows: Copy code
Header ("Cache-control: private ");

Note that your PHP program cannot have any output before this line.

In addition, the session-based solution is added before session_start.

 

The code is as follows: Copy code
Session_cache_limiter ('nocache'); // clear the form
Session_cache_limiter ('private'); // do not clear the form, only during the effective period of the session
Session_cache_limiter ('public'); // do not clear the form, as if the session is not used

Another method is to use cookies. When a user inputs data, the cookie is saved. If an error occurs, the cookie value is returned.

The commonly used ajax method does not need to be deprecated if it is submitted locally.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.