How can I create a simple database without using a server? I think the answer would be no, but check the following:
-
I'm at work and I do not have access to databases or servers. This way I can work only on the local network and shared folders.
-
I can not connect USB to the machine and I'm not an admin on my computer.
-
The information I need to store is few and simple, without the need to use a database.
- People who will make changes or additions to this information are a work team, with no possibility of simultaneous editing.
- Not everyone can edit the code through the editor, therefore looking for other ways to include information on the page.
The idea would be to create a simple form in IE8, as I have access only to it.
- HTML : It has two forms one for insert and one that receives information
-
Button : "Save" This executes a
documento1.js
that identifies the fields entered and saves the fields to any extension.
What I have:
- I can store the information entered in a
.js
file among others by means of JavaScript. - I can save the file as
documento2.js
, giving a var to each field entered, so I can identify the fields later. - The
documento2.js
loads inhead
of HTML, then any update in the document giving an F5 HTML will have access.
What I'm missing :
I need the form that will return results to automatically recognize the fields in documento2.js
.
<td name="recebe" id="Campo01">
(aqui o codigo que preciso para trazer um resultado que esteja no documento2.js com a identificação "Campo01")
</td>
* If necessary I could change the file extension to save the information, I only need HTML to reload this file in head
and populate some fields as the data in this file.
Or is there a less complicated solution to work saving information off?