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
Tell me what type of operation is needed when passing values through a form or an url?
Can you extend a final defined class?
Explain Type hinting in PHP?
Is ruby on rails php?
How to swap two variables without using 3rd temp variable.
Write a program to get second highest number in an array using php?
What is the meaning of die in php?
When do you use define() and when do you use const. What are the main differences between those two?
What are the Advantages and Application Areas of PHP?
What is urlencode and urldecode in php?
What does $_ post mean in php?
Do you know design patterns. List few?
What is the purpose of a query?
How can I increase my website session?
Explain how we can get the number of elements in an array?