what is the post and get method??

Answers were Sorted based on User's Feedback



what is the post and get method??..

Answer / psharma05

get method send the data in query string and limited data.
post method send the data in hidden form and send unlimted data.

Is This Answer Correct ?    0 Yes 0 No

what is the post and get method??..

Answer / gladys

In the get method the data made available to the action page
by the URL so data can be seen in the address bar where as
in the post method the data will be available as data blocks
and not as query string.

Is This Answer Correct ?    0 Yes 1 No

what is the post and get method??..

Answer / mohamed amirudeen

GET METHOD:
if your are using method to be "get" in the form,
then by clicking the submit button,all the values inserted
in the textbox which is found inside the form will be
displayed in the URL.

POST METHOD:
here when the method is made as "post" then the
value inserted in the textbox inside the form will not be
seen on the URL.Hence its for security purpose.

Is This Answer Correct ?    0 Yes 1 No

what is the post and get method??..

Answer / vivek soni

Get Method:
It displays the submited value in the URL and its used
for max 100 character of small applications....

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 ?    0 Yes 1 No

Post New Answer

More PHP Interview Questions

How to concatenate two strings together in php?

0 Answers  


What happens when submit button is clicked?

0 Answers  


How do you put a space in html?

0 Answers  


What and How possible injection in PHP and mysql?

3 Answers   RedAlkemi,


What are the main error types in php and how do they differ?

0 Answers  






Write a program to find a string is palindrome or not?

0 Answers  


How to select a database?

0 Answers  


Php program to generate fibonacci series?

0 Answers  


What is difference between echo and print_r in php?

0 Answers  


Do you know how to declare an array in php?

0 Answers  


What are the steps for the payment gateway processing?

0 Answers  


What is whitespace in php?

0 Answers  


Categories