How to save data in HTML FORM to disk (browser interface only)?

  • Thread starter Thread starter robert b
  • Start date Start date
R

robert b

Guest
Within HTML, can I save the data entered in a FORM without using CGI programs. I basically want to ask survey questions then save the information to disk--without use of full web server setup.

i.e. get use of browser FORM interface but capture typed information.
 
No, absolutely not - sorry.

The closest you can get is to save the data in a Cookie but that means it will exist on the Client's computer and not the Server. The only other thing you could do is, set the form action to "mailto:[email protected]" to get the results mailed to you but that's not much use either.






_
 
Back
Top