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
Explain what does the unlink() function means?
What is properties of class?
What is mean tnq
What is php written in?
How do I run php?
What is php full form?
Difference between array_combine and array_merge?
How we can declare variable in php?
What function should you use to join array elements with a glue string?
What is var_dump function in php?
What is php routing?
What is polymorphism php?
What is the difference between $var and $$var?
What is preg_match?
Is php worth learning in 2019?