Summarize the experiment and your observations.

Experiment with the Web form example presesnted in Figures ...

When either web form is browsed and submitted, the input data is gathered into a query string of this form:
name=Donald+Duck&quest=gold+medal&color=azure&swallow=african&text=I+am+the+greatest
In the case of getForm.html, the GET method is used to transmit the query string to the web script getForm.cgi via the server. The query string is attached to the URI in the request header line. Note that the query string is displayed in the URL box of the browser screen, and the text is plainable visible.
In the case of postForm.html, the POST method is used to transmit the query string to the web script postForm.cgi via the server. The query string is sent to the server in the body of the HTTP request. Note that the query string is NOT displayed in the URL box of the browser screen.

Computer Science & Information Technology

You might also like to view...

What does this method do?

Given the following code: template < class ItemType> LinkedStack::~doSomething() { while (!isEmpty()) pop(); } a. it is the destructor b. it is the constructor c. it displays the contents of the whole stack d. if the stack is not empty, it returns the top of the stack

Computer Science & Information Technology

Answer the following questions true (T) or false (F)

1. The names x, y, and z are satisfactory variable names for the lengths of the legs and hypotenuse of a triangle. 2. In C++ you can assign an expression of type int to a variable of type double with no problem.

Computer Science & Information Technology