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
Write a program to get second highest number in an array using php?
How is it possible to return a value from a function?
Which function is used in php to delete a file?
Explain the purpose of output buffering in php.
What is variable give example?
What are the different data types in javascript?
What is php session and how it works?
Which parts of php are case sensitive?
What is laravel php?
Explain soundex() and metaphone().
Inside a php function, what param needs to be set in order to access a global variable?
What is the difference between single-quoted and double-quoted strings in php?
How can we determine whether a php variable is an instantiated object of a certain class?
What are the differences between GET and POST methods in form submitting?
What is session and why do we use it?