
The browser that consists of a form content is placed at the top left of the figure. The content of the form are placed one below the other are as follows: Label, textbox: Title colon, textbox 1. Textbox 1 contains the value "Central Park". Next Country colon, textbox 2. Textbox 2 contains the value "United States". A button labeled Submit is at the bottom of the page.
The GET method that corresponds to the Submit button reads as follows. Line 1: open angle bracket form method equals open double quotes get close double quotes action equals open double quotes process dot p h p close double quotes close angle bracket at indentation level 1. Line 2: GET forward slash process dot p h p question mark title equal Central plus Park ampersand where equals United plus States h t t p forward slash 1 dot 1 at indentation level 1. title equal Central plus Park ampersand where equals United plus States h t t p forward slash 1 dot 1 in line 2 is marked as the query string.
The POST method that corresponds to the Submit button reads as follows. Line 1: open angle bracket form method equals open double quotes post close double quotes action equals open double quotes process dot p h p close double quotes close angle bracket at indentation level 1. Line 2: POST forward slash process dot p h p h t t p forward slash 1 dot 1. Line 3: Date colon Sun comma 21 May 2017 23 colon 59 colon 59 G M T at indentation level 1. Line 4: Host colon w w w dot mysite dot com at indentation level 1. Line 5: User hyphen Agent colon Mozilla forward slash 4 dot 0 at indentation level 1. Line 6: Content hyphen Length colon 47 at indentation level 1. Line 7: title equals Central plus Park ampersand where equals United plus States at indentation level 1. Lines 2 to 7 is marked as the H T T P header. Line 7 is marked as the query string.
Back