InterviewSolution
Saved Bookmarks
| 1. |
Explain The Difference Between Post And Get Method? |
|
Answer» GET requests are STRING data that is visible to the end user via the URL and a LIMIT of 2KB, POST requests have no limit on total data and the user can’t SEE the data in a query string. GET requests are string data that is visible to the end user via the URL and a limit of 2kb, POST requests have no limit on total data and the user can’t see the data in a query string. |
|