Search code examples
extjsextjs4

EXTJS: How to save Form submit values without Database?


I want to save my form fields without DB and display this value in Grid.

I tried to output as JSON format. but its temporary. I want save as permanent value either in PHP or JSON structure.


Solution

  • You could save it to a text file on the server side. Just write server side processing to write data to a text file. I don't know why you would though. There are plenty of free open source SQL and non-sql databases out there that you can use. You could use couchdb or something similar to store your JSON data directly.