The query string is the part of a request following the URL, preceded by a ? mark.
Example: https://encrypted.google.com/search?hl=en&q=stack%20overflow
For this example, we are making a simple echo webserver that echos back everything submitted to it via the echo field in GET requests.
Examp...