What is the diffrence between GET,POST and REQUEST Method.
Answer Posted / sowmya m n
Get Method:in get method data is append in url and
information will appear in
URL hence it is not secure method to send data however
processing is fast in
get method and it can transfer only256 char, limited number
of data.
Post Method: Post method is secure as compared to get method
since it does not
appear in url and u can transfer unlimited number of data
but processing is
very slow as compared to get method. Now another thing is
that when you have
to upload some data u should have to use post method.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How many escape sequences are recognized in single-quoted strings?
How to create an empty array in php?
What is difference between required and require_once in php?
What is the difference between $var and $$var?
Can we set session value in javascript?
When a conditional statement is ended with an endif?
Explain how we can get the number of elements in an array?
What does trim () do in javascript?
Explain the difference between urlencode and urldecode?
What is uri routing?
How do you access a get requests url parameter with php?
Is laravel frontend or backend?
Write a program to upload a file in php?
How to check an element is exists in array or not in php?
What is strcmp () in php?