0

I need to create a report generation system which sends the reports to a DB. Can I replace the DB with an XML file, so that I don't have to use a server. Is it even possible?

k1eran
  • 3,922
  • 4
  • 44
  • 67

1 Answers1

0

You can create an HTML 5 web page that generates an xml file and let the user save it. On the next time the user can supply the page with the last generated xml. Look here: How to open a local disk file with Javascript?

Also, you can use HTML 5 key value store for loading every time the last data file generated.

I would recommend exploring those 2 options, and maybe later on adding a server to store the data.

Community
  • 1
  • 1
galusben
  • 5,393
  • 3
  • 26
  • 51