what is the post and get method??

Answers were Sorted based on User's Feedback



what is the post and get method??..

Answer / rajeev sharma

Basically both method are use for send form data with the
help of the browser but difference is that the get method
send limited form data and show the address in the browser
but with the help of post method you can send unlimited form
data with security.

Is This Answer Correct ?    32 Yes 5 No

what is the post and get method??..

Answer / devi

Get Method:

It displays the value in the URL and its used for only
small applications and it as a limit to send information.

Post method :

Where as post method is secured,it doesnot show value in
the URL ,and it can be used in large applications .
Here there is no limit to send information via post
method...
Post method is Secure compare to get method...

Is This Answer Correct ?    23 Yes 1 No

what is the post and get method??..

Answer / balraj panwar

This are the form method by which data of form send from one
page to another.Get method send data from url.

Is This Answer Correct ?    18 Yes 7 No

what is the post and get method??..

Answer / ram kaushik

post and get both are used to send data while submission of
the form but the difference is 'get' is used for sending
small data and security threat can happen, in case of post
large data can be sent and data will be secured.

Is This Answer Correct ?    8 Yes 3 No

what is the post and get method??..

Answer / rani sahoo

Get method ll send the limited data through the URL from one
web page to another where as post method send the max amount
of data from one page to another page.

post is more secure than get method.

Is This Answer Correct ?    2 Yes 1 No

what is the post and get method??..

Answer / 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

what is the post and get method??..

Answer / tejaswini

Get Method:Displays values in the URL.
Stores small amount of data.
not so secure.
Post Method:It stores large amount of data.Secure one

Is This Answer Correct ?    1 Yes 0 No

what is the post and get method??..

Answer / anjithkumar.garapati

The Post method is more powerful request. By using Post we
can request as well as send some data to the server. We use
post method when we have to send a big chunk of data to the
server, like when we have to send a long enquiry form then
we can send it by using the post method.


The Get is one the simplest Http method. Its main job is to
ask the server for the resource. If the resource is
available then then it will given back to the user on your
browser. That resource may be a HTML page, a sound file, a
picture file (JPEG) etc. We can say that get method is for
getting something from the server. It doesn't mean that you
can't send parameters to the server. But the total amount of
characters in a GET is really limited. In get method the
data we send get appended to the URL so whatever you will
send will be seen by other user so can say that it is not
even secure.

Is This Answer Correct ?    2 Yes 2 No

what is the post and get method??..

Answer / prantik gautam

POST : It is a secure method for data to send from one page
to another or self. Is can not be seen in the query string.

GET : It is relatively unsecured method for posting data. It
is send through the query string.

Is This Answer Correct ?    0 Yes 0 No

what is the post and get method??..

Answer / habib

Actually both method are used to send the form information
but by get method we can send limited data and used in small application while post method is used to send large amount of data and it is more secure than get method because get method show the address in browser

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

What are the differences between require and include?

0 Answers  


Does php use html?

0 Answers  


What is http php?

0 Answers  


what is interface in java.

4 Answers  


Write a program in php to check whether a number is prime or not?

0 Answers  






How to convert the first character to upper case?

0 Answers  


Do you know how to declare an array in php?

0 Answers  


How can I use the COM components in php?

1 Answers   Covansys, Rushmore Consultancy,


How to write comment in php?

0 Answers  


What are the advantages and disadvantages of Cascading Style Sheets?

1 Answers  


Write a program to get second highest number in an array using php?

0 Answers  


What are the uses of explode() and implode() functions?

0 Answers  


Categories