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
Tell me what are sql injections, how do you prevent them and what are the best practices?
What are arguments in php?
Is php a programming language?
What does $globals mean?
How can I increase my website session?
How to return ascii value of character in php?
What does the initials of php stand for?
How to connect to a url in php?
What are the functions of string?
Can we use session in mvc?
Why did you choose this particular career path?
What is the difference between fopen() and fclose()?
Explain me what is the w3c?
Is php still used?
What is the use of addslashes in php?