what is the difference between GET and POST?
Answer Posted / khaleek ahmad
get and post are HTTP methods that are used to send request
to the server.Difference of them are listed below.
Get() transfer only 256 char. While there is not limit for post.
As the data transfers through address bar (URL) there are
some restrictions in using space, some characters like
ampersand (&) etc in the GET method of posting data. We have
to take special care for encoding data if such special
characters are present. While in post there is no restriction.
For more detail please see: -
http://interview-preparation-for-you.blogspot.com/2011/01/difference-between-get-and-post.html
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain PHP?
Tell me how to initiate a session in php?
How to set cookies?
is that "enumerated array" equal to "numeric array"?
What is the use of limit in mysql?
What is the differences between $a != $B and $a !== $B?
How to Retrieve a Cookie Value?
What is an abstract class in php?
How many types of array supported in php?
What is the default session out time?
Why does php need server?
Write a hello world program using variable?
What is the importance of php?
What is the use of return in php?
What is use of header() function in php?