what is the difference between GET and POST?
Answer Posted / shivanshu
In GET method
- data is submitted as a part of url
- data is visible to the user
- it is not secure but fast and quick
-It use Stack method for passing form variable
- it can store only 18 form variale
In POST method
- data is submitted as a part of http request
- data is not visible in the url
- it is more secure but slower as compared to GET
- it use heap method for passing form variable
- it can post unlimited form variable
| Is This Answer Correct ? | 29 Yes | 4 No |
Post New Answer View All Answers
What is the difference between require_once and require in php?
What is a php object?
Explain the casts allowed in PHP?
Is php a cms?
What are the different errors in php?
What is different types of visibility?
Do you know what is the differences between $a != $B and $a !== $B?
What is default session time in php?
What exactly is validating and sanitizing?
When to use inquire vs enquire?
What is strcmp () in php?
Is c similar to php?
What are magic constants in php?
What is difference between isset and empty in php?
What is a simple php method to make a cross domain data request?