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
How to replace a text in a string with another text in php?
What is the use of mysql_fetch_array in php?
What's the output of the ucwords function in this example?
What was the old name of php?
What are the advantages of php?
What is the Default syntax used in PHP?
Which is better wamp or xampp?
How do I know my xampp version?
What is putenv?
What's the difference between using mysql_ functions and pdo?
How check submit button is clicked in php?
What backslash character will match whitespace?
What is php dependency injection?
How do you remove duplicates from an array?
What is difference between Method overriding and overloading in PHP?