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 html used for?
What good is polymorphism?
Explain php explode() function.
What is the meaning of xdebug?
How can I prevent sql-injection in php?
How to check a variable is an array or not in php?
What is split function in php?
What is php default argument?
Whether php supports microsoft sql server?
What are the Formatting and Printing Strings available in PHP?
What is the difference between php and java?
What does addslashes do in php?
What is query string php?
Why php is used with mysql?
What is stdclass in php?