1.

Difference Between Get And Post ?

Answer»

In GET your entire form submission can be encapsulated in ONE URL, LIKE a hyperlink. QUERY length is limited to 260 characters, not secure, faster, quick and easy.

In POST Your name/value pairs inside the body of the HTTP request, which makes for a cleaner URL and imposes no size LIMITATIONS on the form's output. It is used to send a chunk of data to the server to be processed, more versatile, most secure.

In GET your entire form submission can be encapsulated in one URL, like a hyperlink. query length is limited to 260 characters, not secure, faster, quick and easy.

In POST Your name/value pairs inside the body of the HTTP request, which makes for a cleaner URL and imposes no size limitations on the form's output. It is used to send a chunk of data to the server to be processed, more versatile, most secure.



Discussion

No Comment Found