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
What u mean by query?
Is key in array php?
Explain me what is the difference between $_files['userfile']['name'] and $_files['userfile']['tmp_name']?
How to get elements in reverse order of an array in php?
Is facebook still in php?
What are the advantages of indexes in php?
What are php errors?
What is the apache?
Is it more secure to use cookies to trfer session ids?
What are the different data types in javascript?
What is the difference between get and post method in php?
What are the advantages of using php?
Tell me what is the use of mysql_real_escape_string() function?
Tell me how can we display information of a variable and readable by human with php?
How to enable cURL in PHP?