GET Method:
- 1.Using get method we are able to pass 2K data from HTML.
- 2.All data we are passing to Server will be displayed on the Browser.
- 3.This is used to sent small size data.
POST Method:
1.In this method we does not have any size limitation.
2.All data passed to server will be hidden, User cannot able to see this info on the browser.
3.The data is send into a small packets. This used to sent large amount of data.