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
How do I display php errors?
How many types of session are there?
What is the integer?
How do you use bcrypt for hashing passwords in php?
What is an associative array?
What is the main function of php?
How to remove duplicate values from array using php?
Who developed php?
What is difference between php and wordpress?
What is prepare in php?
Explain do you use composer? If yes, what benefits have you found in it?
Is empty in php?
How can php and javascript interact?
How do I expire a php session after 30 minutes?
Do you have to initialize variables in php?