I\'d like to know if the POST method on HTTP sends data as a QueryString, or if it use a special structure to pass the data to the server.
In fact, when I analyze t
GET will send the data as a querystring, but POST will not. Rather it will send it in the body of the request.