what is the difference between GET,POST and REQUEST in php
Answer / mishra ashutosh
GET
data that is send can be seen in the address bar.so not secure.It has a data size limit.
POST
data is not visible to user, and has more size limit then GET
Both GET and POST can be used as method in form tag.
but REQUEST can't be used there.
REQUEST is generally used where we are not sure about the method whether the data are coming thru POST or GET method.
it is used to get the from data only.
Feel free to ask anything regaring php,mysql,js.
mishraa_007@rediffmail.com
| Is This Answer Correct ? | 15 Yes | 1 No |
Why print_r is used in php?
How to convert the first character to upper case?
How can we get the error when there is a problem to upload a file?
Declare a new variable in php equal to the number 3;
How data or variable can be receive or send from PHP to HTML page??
What are the difference between overloading and overriding in oops?
Which php framework is fastest?
What is the actually used php version?
How be the result set of mysql handled in php?
What are the reasons for selecting lamp (linux, apache, mysql, PHP) instead of combination of other software programmes, servers and operating systems?
What is difference between variable declaration and variable definition?
Is php open source?