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
Tell me what is the default session time in php?
Explain mixed and callback functions?
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?
Why namespace is used in php?
What is use of isset function in php?
how to detect a mobile device using php
How to delete file in php?
How can you create a session in php?
What is the difference between php and cakephp?
What is the difference between php and java?
Explain php split() function.
What is the major php security hole? How to avoid?
What is basename php?
How to get number of elements in an array?
What is csrf validation?