HTTP defines various request methods that clients can send to HTTP servers. Generally they involve performing an action on the specified resource. The most commonly used request methods are listed below:
Method
|
Description
|
GET
|
Retrieve the specified resource (usually
an HTML page or file).
|
HEAD
|
Same as GET, except only retrieve the
response header, not the body (i.e. the contents of the requested resource).
|
POST
|
Submit data to be processed. The data
is in the body of the request, and usually comes from an HTML form.
|
Next: HTTP sessions