What are the differences between Get and post methods in
form submitting, give the case where we can use get and we
can use post methods?

Answers were Sorted based on User's Feedback



What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / malathi

using get method is not secure, ur informations will be
appeared in the url address. using post method is much
secure it will not appear in the url address. eg.secure for
using post method in login form.
Get-> we can transfer limited data and its not secure.
post-> we can transfer unlimited data. ans its a secure.

Is This Answer Correct ?    30 Yes 3 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / asish kumar khuntia (mithu)

Look there are more difference between get and post method.
one is data posting capacity.
2 is data security propose.

Post method is use in form submit case bec it contain
secure data.
Get method is use in gallery, shopping cart where categoty
sub category case.

Is This Answer Correct ?    33 Yes 8 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / prasad konnur

with Get we can send limited number of characters in query
string.

Post method is more secure than Get.

Is This Answer Correct ?    27 Yes 5 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / prashanthi

In Get method we get complete information in top header that
is it is not secure,for sending secure data like
passwords,any Account numbers....we can use post method

Is This Answer Correct ?    17 Yes 3 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / jasmin

Post method use in FORM posting
Post method can carry unlimited data.
Data secure in post method.

Get method usually carry that information which in visible
to anyone which is append with URL . So the data in not
secure in get methode.

Is This Answer Correct ?    14 Yes 3 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / dinesh chandra pant

The difference between Get and Post methods are as follows:
1. By using Post method we can send unlimited data,But it's
not possible in the case of Get. Get support maximum 200
characters or 2 MB data.
2. Get method is not secure as anyone can see it's content
in the URL.It doesn't happen in case of Post method.

examples: When the security is the main aim then we use Post
method e.g. in case of password.
When we have to supply the values through a link then we use
Get Method e.g. in case of tables where we have to get the
records for a specific value.

Is This Answer Correct ?    6 Yes 3 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / tushar kumar kundan

The built-in $_GET function is used to collect values from a
form sent with method="get".

Information sent from a form with the GET method is visible
to everyone (it will be displayed in the browser's address
bar) and has limits on the amount of information to send
(max. 100 characters).
============================================================
The built-in $_POST function is used to collect values from
a form sent with method="post".

Information sent from a form with the POST method is
invisible to others and has no limits on the amount of
information to send.

Is This Answer Correct ?    4 Yes 1 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / mij

Use of Get Method:

The parameters from the form will appended to the
querystring. Sometimes, if the user want to bookmark a
page, this would be useful.

Is This Answer Correct ?    4 Yes 3 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / prashanth

The get method is faster than post method because the get
method is no need to submit the data to the web-server.
but with the post method the data is to submit in to the
web-server.

Is This Answer Correct ?    0 Yes 0 No

What are the differences between Get and post methods in form submitting, give the case where we c..

Answer / alby

ya absolutely the GET METHOD IS LESS powerful than POST METHOD

Is This Answer Correct ?    5 Yes 8 No

Post New Answer

More PHP Interview Questions

Which is better php praogramming or cad/cam scope wise and also salaray wise?

0 Answers  


Explain what does $_files means?

0 Answers  


Where do we use get and post?

0 Answers  


What are the security measures we have to take for our site not to hack by others?

1 Answers   Infosys,


What is basic php?

0 Answers  






What the difference between WAMP5 1.7.3 and WampServer 2?

3 Answers  


Do you know what does $globals means?

0 Answers  


What is nan value?

0 Answers  


What is mysql_fetch_array?

0 Answers  


What is csrf cookie?

0 Answers  


What enctype is required for file uploads to work?

0 Answers  


How to convert a json string to an array in php?

0 Answers  


Categories