InterviewSolution
Saved Bookmarks
| 1. |
What Are The Differences Between Get And Post Methods In Form Submitting, Give The Case Where We Can Use Get And We Can Use Post Methods? |
|
Answer» When we submit a FORM, which has the GET method it displays pair of name/value used in the form at the address bar of the BROWSER preceded by url. Post method doesn’t display these VALUES. When we submit a form, which has the GET method it displays pair of name/value used in the form at the address bar of the browser preceded by url. Post method doesn’t display these values. |
|