InterviewSolution
Saved Bookmarks
| 1. |
What is difference between GET and POST method in HTTP protocol? |
|
Answer» The GET method sends the encoded user information appended to the page request. The page and the encoded information are separated by the ? Character. The POST method packages the information in exactly the same way as GET methods, but instead of sending it as a text string after a ? in the URL it sends it as a separate message. This message comes to the backend program in the form of the standard input which you can parse and use for your processing. |
|