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 die in php?
Why many companies are switching their current business language to php?
What is csrf mvc?
Tell me how to retrieve a cookie value?
How to find the index of an element in an array php?
When is a conditional statement ended with endif?
How long is csrf token?
What is a php class?
Explain me soundex() and metaphone()?
What is the best php framework 2018?
Why do you need to filter out empty files?
Tell me what should we do to be able to export data into an excel file?
How can you associate a variable with a session?
How to calculate the difference between two dates using php?
How can a cross-site scripting attack be prevented by php?