Answer Posted / leelu
Difference Between HEAD, GET , POST
HEAD
Asks for the response identical to the one that would
correspond to a GET request, but without the response body.
This is useful for retrieving meta-information written in
response headers, without having to transport the entire
content.
GET
Requests a representation of the specified resource.
Note that GET should not be used for operations that cause
side-effects, such as using it for taking actions in web
applications.
POST
Submits data to be processed (HTML form) to the
identified resource (server side data). The data is included
in the body of the request. This may result in the creation
of a new resource or the updates of existing resources or both.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is 'float' property in css?
What are the two main string operators?
Can you pass an array into a function?
What are examples of dependent variables?
Will react hooks replace redux?
How do I find environment variables?
can we swap two different string using php for example:-- before swapping:-- 1 string :-hello friend, 2 string :-my dear, after swapping that strings will be: 1.hello dear, 2.my friend.
Is apache needed for php?
What is the difference between myisam and innodb?
Are parent constructors called implicitly inside a class constructor?
How is the comparison of objects done in php?
How to genrate report in wordpress cms
What does PEAR stands for?
What are static variables in php?
Is php a backend?