previous
|
index
|
next
HTTP GET
Before HTTP 1.0, there was only
GET
:
Can send limited information in the form of a
query string
. Example:
/index.html?fname=bruce&lname=wayne&password=batman
Cannot send large amounts of information (most URLs limited to 255 characters)
Should not send sensitive information
Can only be used to
query
a web application, not
update
it.
previous
|
index
|
next