Query stringA query string is a part of a uniform resource locator (URL) that assigns values to specified parameters. A query string commonly includes fields added to a base URL by a Web browser or other client application, for example as part of an HTML document, choosing the appearance of a page, or jumping to positions in multimedia content. ![]() ?title=Query_string&action=edit A web server can handle a Hypertext Transfer Protocol (HTTP) request either by reading a file from its file system based on the URL path or by handling the request using logic that is specific to the type of resource. In cases where special logic is invoked, the query string will be available to that logic for use in its processing, along with the path component of the URL. StructureA typical URL containing a query string is as follows:
When a server receives a request for such a page, it may run a program, passing the query string, which in this case is Web frameworks may provide methods for parsing multiple parameters in the query string, separated by some delimiter.[3] In the example URL below, multiple query parameters are separated by the ampersand, "
The exact structure of the query string is not standardized. Methods used to parse the query string may differ between websites. A link in a web page may have a URL that contains a query string. HTML defines three ways a user agent can generate the query string:
Web formsOne of the original uses was to contain the content of an HTML form, also known as web form. In particular, when a form containing the fields
While there is no definitive standard, most web frameworks allow multiple values to be associated with a single field (e.g. For each field of the form, the query string contains a pair This convention is a W3C recommendation.[3] In the recommendations of 1999, W3C recommended that all web servers support semicolon separators in addition to ampersand separators[6] to allow application/x-www-form-urlencoded query strings in URLs within HTML documents without having to entity escape ampersands. Since 2014, W3C recommends to use only ampersand as query separator.[7] The form content is only encoded in the URL's query string when the form submission method is GET. 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.[8] Indexed searchBefore forms were added to HTML, browsers rendered the – When the text input into the indexed search control is submitted, it is encoded as a query string as follows:
Though the URL encodingSome characters cannot be part of a URL (for example, the space) and some other characters have a special meaning in a URL: for example, the character HTML 5 specifies the following transformation for submitting HTML forms with the "GET" method to a web server. The following is a brief summary of the algorithm:
The octet corresponding to the tilde (" The encoding of SPACE as ' ExampleIf a form is embedded in an HTML page as follows: <form action="/cgi-bin/test.cgi" method="get">
<input type="text" name="first" />
<input type="text" name="second" />
<input type="submit" />
</form>
and the user inserts the strings "this is a field" and "was it clear (already)?" in the two text fields and presses the submit button, the program If the form is processed on the server by a CGI script, the script may typically receive the query string as an environment variable named TrackingA program receiving a query string can ignore part or all of it. If the requested URL corresponds to a file and not to a program, the whole query string is ignored. However, regardless of whether the query string is used or not, the whole URL including it is stored in the server log files. These facts allow query strings to be used to track users in a manner similar to that provided by HTTP cookies. For this to work, every time the user downloads a page, a unique identifier must be chosen and added as a query string to the URLs of all links the page contains. As soon as the user follows one of these links, the corresponding URL is requested to the server. This way, the download of this page is linked with the previous one. For example, when a web page containing the following is requested: <a href="foo.html">see my page!</a>
<a href="bar.html">mine is better</a>
a unique string, such as <a href="foo.html?e0a72cb2a2c7">see my page!</a>
<a href="bar.html?e0a72cb2a2c7">mine is better</a>
The addition of the query string does not change the way the page is shown to the user. When the user follows, for example, the first link, the browser requests the page This way, any subsequent page request from this user will carry the same query string The main differences between query strings used for tracking and HTTP cookies are that:
Compatibility issuesAccording to the HTTP specification:
If the URL is too long, the web server fails with the 414 Request-URI Too Long HTTP status code. The common workaround for these problems is to use POST instead of GET and store the parameters in the request body. The length limits on request bodies are typically much higher than those on URL length. For example, the limit on POST size, by default, is 2 MB on IIS 4.0 and 128 KB on IIS 5.0. The limit is configurable on Apache2 using the See alsoReferences
|
Portal di Ensiklopedia Dunia