Is it possible to save html form data permanently inside a file or some other place where we can use it later.I know this is possible through Php but i want to know that is this possible just by using JS and Html?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You might be interested in localStorage (here is a page that’ll help you get started). However it won’t be completely permanent. Persistent yes, permanent no. The user can clear localStorage at any time, and even modify it with relative ease. Be careful how you use it, but it sounds like what you’re after.