What are the differences between Get and post methods in
form submitting, give the case where we can use get and we
can use post methods?
Answer Posted / dinesh chandra pant
The difference between Get and Post methods are as follows:
1. By using Post method we can send unlimited data,But it's
not possible in the case of Get. Get support maximum 200
characters or 2 MB data.
2. Get method is not secure as anyone can see it's content
in the URL.It doesn't happen in case of Post method.
examples: When the security is the main aim then we use Post
method e.g. in case of password.
When we have to supply the values through a link then we use
Get Method e.g. in case of tables where we have to get the
records for a specific value.
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What are some of the advanced features of php?
How to join multiple strings stored in an array into a single string?
Can you give example for trait in php?
What is the role of the .htaccess file in php?
Is python similar to php?
Which function can be used to delete a file?
Does php have block scope?
what is PDO?
What is the difference between htmlentities() and htmlspecialchars()?
How php statement is different from php script?
Php being an open source is there any support available to it?
What is php and sql?
How do I expire a php session after 30 minutes?
Where do I run php code?
Do you know what is php?