Question: Exercise on HTML Forms Task: Update the HTML code below so that web users can select a month and the web browser sends that data
Exercise on HTML Forms
Task: Update the HTML code below so that web users can select a month and the web browser sends that data to a program running at the Web server.
The updated HTML code should satisfy the following requirements: 1. The URL of the program running at the Web server is http://www.webstepbook.com/params.php 2. The form data is sent to the server with the HTTP POST method. 3. The program running at the Web server expects the form data (query parameter) to be in the format "m=i", where m is the parameter name, i is the integer representing the month. For example, if January is selected, the query string received by the program will be "m=1"; if February is selected, the query string received by the program will be "m=2"; and so on.
Turn in: The final updated HTML code.
Exercise Web Form
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
