COMP1850 | Form Basics

HTML Forms are used to gather data from users and send it to a server for processing.

Two steps:

  1. Gather the data from the user - HTML form shell is used to show the form controls for the user to provide data and submit the form. COMP 1850 required curriculum
  2. Process the form data - An HTTP server will have a server-side processing script which will do something useful with the data. NOT COMP 1850 curriculum

Examine the source code of this document for more details.