+2 votes
in Class 12 by kratos

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?

1 Answer

+4 votes
by kratos
 
Best 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

...