pasos a seguir para crear una aplicación web
Y seguimos leyendo sobre aplicaciones web. Os pego otro listado, esta vez con los pasos para crear una.
When building any Internet application you’re going to go through the following steps:
- Develop a data model. What information are you going to store and how will you represent it?
- Develop a collection of legal transactions on that model, e.g., inserts and updates.
- Design the page flow. How will the user interact with the system? What steps will lead up to one of those legal transactions? (Note that “page flow” embraces interaction design on Web, mobile browsers, and also via hierarchical voice menus in VoiceXML but not conversational speech systems.)
- Implement the individual pages. You’ll be writing scripts that query information from the data model, wrap that information in a template (in HTML for a Web application), and return the combined result to the user.

