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 the use of curl()?
How break and continue while loop in php?
What is php dependency injection?
What is the function of string in c?
What is a session in php?
How do you execute a php script from the command line?
Is python easier than php?
If we login more than one browser windows at the same time with same user and after that we close one window, then is the session is exist to other windows or not? And if yes then why? If no then why?
Explain about looping in PHP?
What is the purpose of using php?
Explain different sorting function in php?
How to create a session? How to set a value in session?
How do you check if an arraylist is empty?
What is abstraction php?
What is the difference between single quoted string and double quoted string?