How do JavaScript-heavy web applications route freshly-entered data to a database, and then display it to the client, only using JavaScript/HTML?
Say Acme Social Network user types profile information into a HTML form and clicks 'submit':
- How would you save that user's profile data to a database?
- How would you then display that user's profile data on the profile page?
Can it all be done with JS/HTML?