what is the difference between GET and POST?
Answer Posted / deepinder
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
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
| Is This Answer Correct ? | 208 Yes | 9 No |
Post New Answer View All Answers
What does a dependant variable mean?
How to access a Static Member of a Class in PHP?
Name some of the popular frameworks in php.
What type of language is php?
Is php a web server?
How to remove duplicate values from a PHP Array?
What is c++ polymorphism?
Define soundex()?
What is super keyword in c++?
Is php front end?
How many escape sequences are recognized in double-quoted strings in php?
What new features php7 has in store for us?
When viewing an html page in a browser, the browser often keeps this page in its cache. What can be possible advantages/disadvantages of page caching? How can you prevent caching of a certain page (please give several alternate solutions)?
Does csrf token change?
How can we determine whether a php variable is an instantiated object of a certain class?