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 default time in seconds for which session data is considered valid?
Explain the difference between php4 and php5.
What is a php array?
Is php secure?
What is difference between md5 and SHA256?
Which is better session or cookie?
What is the use of strip_tags() method?
How does csrf attack work?
Do I need apache for php?
What is string in php?
What is use of header() function in php? What the limitation of header()?
Define about declare construct?
What is $_ get in php?
What does $this do in php?
what is variable scope, which variables are accessible from where and what are "undefined variable" errors?