what is the difference between GET and POST?
Answer Posted / 111
GET :
- GET method have not security because of data view in
addressbar. For ex: we can not use this method for checking
login
- We can bookmark link with this method
- Server can log all action
- because of server log, we can pass 255 char. as query
string
POST:
- POST method have security of data.
- We can not bookmark page link
- We can pass unlimited data by this method as query string
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
Which will check if a function exists?
What is cakephp framework?
What are the data types in php?
What is __ construct in php?
How to return ascii value of character in php?
Tell me what the difference between the 'bitwise and' operator and the 'logical and' operator?
Where is the functions php in wordpress?
What language is php based on?
How to submit form without a submit button.
How do you remove whitespace from the beginning and end of a $string variable?
What is php full form?
Which is true about the singleton design pattern?
What is the use of header in php?
How many types of array are there in php?
What is the difference between $argv and $argc? Give example?