+ 1
Help me
What Is diffrence between get and post?
2 RĂ©ponses
+ 5
Both are HTTP request methods.
-GET is used to request data from a specified resource. It can retrieve any visible data to a client.
-The POST sends data to a server to create or update a resource.
-In Get request data is exposed in URL bar. Post request is secured because data is not exposed in URL bar.
(for reference:
https://www.google.com/amp/s/www.geeksforgeeks.org/html-form-method-attribute/amp/
)
0
Thanks