What is the difference between POST and GET methods?
1
Expert's answer
2010-10-21T18:46:00-0400
The main difference is in data processing from the form to some script. The GET method sends the data as a part of URL, using the POST method user doesn't see the data during sending it. The page generated with GET method always remains the same while the the page generated using POST method can be different for each time script works.
Comments
Leave a comment