what is the post and get method??
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
Suppose your zend engine supports the mode <? ?> Then how can you configure your php zend engine to support <?php ?> Mode ?
Is php an array?
Can a php code encryted? Is it possible to execute the php file which is encrypted(without decrypting), if so pleaze tell me the way.
How to read and display a HTML source from the website url?
How is the ternary conditional operator used in php?
Explain the value of the variable input is a string 1,2,3,4,5,6,7. How would you get the sum of the integers contained inside input?
what the new feature add in php 7.2?
What is the difference between for and foreach?
What is the scope of a variable defined outside a function?
What is php explain how php works?
What is final class and final method?
Where can I find php ini file?