what is the difference between GET and POST?
Answer Posted / uttam thakor
The method attribute specifies the HTTP method to use when
sending the request. If unspecified, then the value of
?GET?, (default) is assumed, unless the submission of
multipart/form-data is encountered, in which case the
implied method will be ?POST?.
GET form contents are passed as part of the URL, as a QUERY
STRING.
POST form contents are passed to the script as an input file
As a result, much more form data can be passed, since you
can't run into the limit on the length of a URL or the
length of a command line or command line argument on the
server.
| Is This Answer Correct ? | 113 Yes | 28 No |
Post New Answer View All Answers
What is substr in php?
What are php errors?
Write a program in php to reverse a number?
Is php front end or back end?
What is the scope of a variable defined in a function?
Why do we use in php?
What is the use of nl2br() in php?
Write a program to find no of days between two dates in php?
Define soundex()?
What is the use of strpos in php?
What is overriding in php?
What is the sign to start variables in PHP?
Tell me what is needed to be able to use image function?
Is php a programming language?
What is the difference between abstract class and interface in php?