Difference between get and post method.

devquora
devquora

Posted On: Dec 24, 2020

 

Some differences between GET and Post are:

GETPOST
It claims request parameter in URL StringIt claims request parameter in the request body
It is able to send a minute amount of dataIt is able to send a great amount of data
It can be cached and bookmarked.It is not able to cache and bookmarked
It is efficient for the view purposeIt is efficient for the update-purpose

    Related Questions

    Please Login or Register to leave a response.

    Related Questions