A report on POST (HTTP)
Request method supported by HTTP used by the World Wide Web.
- POST (HTTP)5 related topics with Alpha
Form (HTML)
2 linksSent to a server for processing.
Sent to a server for processing.
When data that has been entered into HTML forms is submitted, the names and values in the form elements are encoded and sent to the server in an HTTP request message using GET or POST.
Percent-encoding
2 linksMethod to encode arbitrary data in a Uniform Resource Identifier using only the limited US-ASCII characters legal within a URI.
Method to encode arbitrary data in a Uniform Resource Identifier using only the limited US-ASCII characters legal within a URI.
When data that has been entered into HTML forms is submitted, the form field names and values are encoded and sent to the server in an HTTP request message using method GET or POST, or, historically, via email.
Query string
1 linksPart of a uniform resource locator that assigns values to specified parameters.
Part of a uniform resource locator that assigns values to specified parameters.
The same encoding is used by default when the submission method is POST, but the result is submitted as the HTTP request body rather than being included in a modified URL.
Hypertext Transfer Protocol
1 linksApplication layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems.
Application layer protocol in the Internet protocol suite model for distributed, collaborative, hypermedia information systems.
POST: The POST method requests that the target resource process the representation enclosed in the request according to the semantics of the target resource. For example, it is used for posting a message to an Internet forum, subscribing to a mailing list, or completing an online shopping transaction.
Postback
0 linksIn web development, a postback is an HTTP POST to the same page that the form is on.