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 namespace in php?
"mysql_fetch_row — Get a result row as an enumerated array",this sentence comes from the PHP offical manual.However ,i can not understand the words "enumerated array".I need some help.Thanks a lot to everyone that reply.
Is empty check in php?
What is default session time in php?
When sessions ends?
What is uri routing?
Tell me what is the use of "enctype" attribute in a html form?
Why do we use cookie?
What are the rules to declare a php variables?
What are the differences between PHP3 and PHP4 and PHP5? what is the current stable version of PHP?
How do we get the current session id?
What is abstract class in php?
What is the difference between html and php?
How many escape sequences are recognized in double-quoted strings?
What is isset function in php?