what is the difference between GET,POST and REQUEST in php
Answer Posted / 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 |
Post New Answer View All Answers
Tell me what is the definition of a session?
Which function is used in php to check the data type of any variable?
List some of the features of php7.
How do you check if a variable has been set in php?
Explain PHP?
Explain php parameterized functions.
How would you determine the size of a file in php?
Please explain is it possible to use com component in php?
Tell me how do I escape data before storing it into the database?
What is a definer in mysql?
How can I embed a java program in php file and what changes have to be done in php.ini file?
Name some of the functions in php.
What does $_cookie means?
How can we enable error reporting in php?
What is a lambda function in php?