What is the difference between GET and POST methods of submitting form data?
sai
GET method uses cookies to post the data to the server.
POST method uses name/value pair to post the data to the server.
GET method uses copkies to post the data to the server.