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
Is php strongly typed?
What is the use of strpos in php?
What is the meaning of ‘escaping to php’?
What is printf in php?
Define object-oriented methodology?
How to remove leading and trailing spaces from user input values in php?
What are the functions for imap?
What are the characteristics of php?
What the use of var_dump()?
What is the basic syntax of Php?
What is the difference between core php and php?
Which have the fastest execution between mysql_fetch_array() and mysql_fetch_assoc()
What are the functions used in php?
What is the difference between abstract class and interface in php?
What is php session_start() and session_destroy() function?