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 to call a php function from html button?
What is the difference between php and java?
Explain some of the php array functions?
When you want to show some part of a text displayed on an html page in red font color? What different possibilities are there to do this? What are the advantages/disadvantages of these methods?
Differentiate echo vs. Print statement.
What are the features of object-oriented programming in php?
What is a composer?
What are the special characters you need to escape in single-quoted stings?
What are the functions used in php?
What is csrf token and how will you add csrf token in ajax?
what is constructor
What is the difference between echo print and print_r in php?
What is data abstraction in php?
How to write a program to make chess?
How to get no. of rows using MYSQL function?