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
What is the difference between null and empty?
What is difference between action hook and filter hook?
Why laravel is the best php framework in 2019?
Can I use php in visual studio?
How does php serialize work?
How to join multiple strings stored in an array into a single string?
List data types in PHP?
What is php rest api?
What is the difference between $name and $$name?
What is call by reference in php?
Which function is used in php to delete a file?
What is htmlspecialchars?
How to fix "headers already sent" error in php
What are escaping characters? Explain with an example?
How to include a file to a PHP page?