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
Tell us how to redirect a page in php?
What is the mysql injection?
How does cookies work in php?
What is variable declaration?
What is abstraction php?
How do you check is php not empty?
How can you retrieve a cookie value?
What is Apache's configuration file typically called?
How can I find my php version?
What do you mean by core php?
Who is the father of php and what is the current version of php and mysql?
Write a php script to get the largest key in an array?
How can I prevent sql-injection in php?
What is a trait in php?
What is the best way to change the key without changing the value of a php array element?