I would like to store information (like values of an input form) in a way to retrieve it later. I don't want to use cookies and I do not have a database. What options do I have?
I was thinking the best will be to write it on the page inside comments tags. For example:
<!--MYVALUE1=50-->
<!--MYVALUE2=100-->
I do not have problems writing it with javascript, but I do have a problem retrieving the information. Does anybody know how can I retrieve consistently information stored this way?
I was thinking the best will be to write it on the page inside comments tags. For example:
<!--MYVALUE1=50-->
<!--MYVALUE2=100-->
I do not have problems writing it with javascript, but I do have a problem retrieving the information. Does anybody know how can I retrieve consistently information stored this way?