what is the difference between GET and POST?
Answer Posted / nikunj
GET :
- GET method have not security because of data view in
addressbar. For ex: we can not use this method for checking
login
- We can bookmark link with this method
- Server can log all action
- because of server log, we can pass 255 char. as query
string
POST:
- POST method have security of data.
- We can not bookmark page link
- We can pass unlimited data by this method as query string
| Is This Answer Correct ? | 149 Yes | 16 No |
Post New Answer View All Answers
Does php have a future?
What are examples of independent and dependent variables?
Php being an open source is there any support available to it?
What is the difference between characters 34 and x34?
which will print out the php call stack?
Explain how is it possible to set an infinite execution time for php script?
Can php use gettext?
Tell me how can we pass the variable through the navigation between the pages?
How the web server interprets php and interacts with the client?
What are the data types in php?
What is meant by MIME?
What is the definition of a session?
What changes I have to do in php.ini file for file uploading?
How to get the number of characters in a string?
What is mysql_fetch_row?