Form Data Flow
From Form to Server and Back Again
Section titled “From Form to Server and Back Again”
- User fills in the input element (fields) of a form
- User submits form
- User input is validated in their browser
- Data from the form is sent to a form processing script (Node.js or PHP, usually)
- Not all forms are sent to a server. Some forms such as calculators can be processed locally.
- Form data is processed (either client-side or server-side)
- Processor returns a status and often response data
- Visual feedback (optionally) given to the user