InterviewSolution
Saved Bookmarks
| 1. |
Aayush wants to send highly sensitive form data such as username and password which method out of GET/POST should he use to send the form data? Why? |
|
Answer» POST METHOD Appends form-data inside the body of the HTTP request (data is not shown in URL) Form submissions with POST cannot be bookmarked |
|