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
Write a program to display table of a number using php?
Explain Whitespace Characters?
How do I see how many pages per session in google analytics?
What is mysqli_query?
What is sorting php?
How to redirect a page in php?
What is php compared to html?
How can you send http header to the client in php?
What is a simple php method to make a cross domain data request?
Explain different sorting function in php?
Whether php supports microsoft sql server?
Why do we use inheritance in php?
What is difference between core php and framework?
Is laravel frontend or backend?
What are the delimiters in php?