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 |
What is array filter php?
How to create an array in php?
What are php keywords?
Why did you choose this particular career path?
What is action hooks and filter hooks?
How many different types of messages available in php?
How can we know the total number of elements of Array?
How to include a file to a PHP page?
What is php simple definition?
Is it possible to protect special characters in a query string?
Tell me what is the use of mysql_real_escape_string() function?
What is the meaning of die in php?