what is the difference between GET and POST?
Answer Posted / bijaya
GET :
A : http Request AS GET may gets fails, if exceed certain
length in request URI as it is passed as query string
B : uploading files through input type file not possible
C : Chances for Data lost after server encoding
POST :
A : It does not fails in http Request AS POST
B : uploading files through input type file is possible
C : Data does not lost after server encoding
| Is This Answer Correct ? | 41 Yes | 13 No |
Post New Answer View All Answers
Explain mysql_errno()?
What library is used for pdf in php?
What is session and why do we use it?
How to get a random value from a php array?
What is the use of nl2br() in php?
What is the use of stripslashes in php?
Explain do you use composer? If yes, what benefits have you found in it?
Which function would you use to format date information in php?
What is new static in php?
When use javascript vs php?
Which function parses an English textual date or time into Unix timestamp in PHP.
What is overloading and overriding in oop?
Is php faster than javascript?
What is a simple php method to make a cross domain data request?
What are the difference between echo and print?