Should I use the GET or POST method when sending information to a server in the body of the HTTP request? There are no query parameters appended to the URL, the server will inspect the body of the request for what it needs.
Asked
Active
Viewed 2,255 times
3 Answers
0
A nice description and interesting discussion on the topic:
http://thinkvitamin.com/code/the-definitive-guide-to-get-vs-post/
0
POST should be used if you are not planing on using the query string.

Rikal
- 153
- 8
-
1POST can still pass query string args. – AJ. May 17 '11 at 13:09
-
it can, but the browser will not generate the query string based on the form in a POST but will in a GET. – Rikal May 17 '11 at 13:20