I’m building a html app which will be loaded in a web view in an iphone app. How can I save user specific data without user accounts stored in a database?
I can’t access the iphone’s UDID inside the html app, I don’t think it’s possible to send it from the iphone app to html app. I have the PHP session ID which is unique for current users but won’t work for returning ones.
Any ideas are appreciated.
Mobile Safari on iOS offers, I believe, a number of ways to store data on the client-side using HTML5. Apple’s own Safari Client-Side Storage and Offline Applications Programming Guide explains the possibilities, including simple Key-Value parings, if that’s what you are looking for.