what is the difference between GET and POST?
Answer Posted / ashfaq
GET:
------
1. URL Changes to the submitted script name, appended with a list
of each variable with the value.
2. Use only if the number of variable to be used in a form ar very less.
3. Never use GET forms when asking for login ID and passwords.
4. Even hidden variables are shown as a part of the URL.
POST:
---------
1. This is the best way of submitting forms to the web server.
2. There is no limitation on the number of Variables passed from the form.
3. Hidden variable are always hidden!
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between single-quoted and double-quoted strings in php?
How to add 301 redirects in PHP?
How can we upload a file in php?
What is session in php why it is use?
how to open & closing opening period in fico
What are the features of php?
How many escape sequences are recognized in single-quoted strings?
Do you know what's the difference between __sleep and __wakeup?
What is lazy loading in php?
What are the new features in php 7?
Who is the father of php?
What are hooks in php?
Which is best framework for php?
Is it possible to use com component in php?
Can you give example for trait in php?