InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between GET method and Post method. Write an Example |
|
Answer» Answer: Below is the answer Explanation: In GET METHOD, values are visible in the URL while in POST method, values are NOT visible in the URL. GET has a limitation on the LENGTH of the values, generally 255 characters whereas POST has no limitation on the length of the values since they are submitted via the BODY of HTTP. |
|