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
Why framework is used in php?
Do you know is it possible to extend the execution time of a php script?
How to execute a function in php?
How to close a session properly?
What is strcmp () in php?
How to connect to a url in php?
How we can get the number of elements in an array?
How can we display information of a variable and readable by a human with php?
How to create a mysql connection?
Where can I learn php?
Which database is best for php?
Explain how does one prevent the following warning ‘warning: cannot modify header information – headers already sent' and why does it occur in the first place?
what are interfaces and Abstart classes
What is php resource type?
What is the use of mvc in php?