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 / dakshayani
get() method sends data in the form of url but post() method
will send as a data stream.
data transfered thru get() method is not secured whereas
post() method is safe and secured.
data sent thru get() method will be truncated but for post()
method there is no limitation on the amount of data being sent.
| Is This Answer Correct ? | 24 Yes | 0 No |
How do you debug php?
Is laravel an oop?
Which php framework is fastest?
Which function would you use to format date information in php?
Why do we use javascript in php?
what is the difference between GET,POST and REQUEST in php
Questions on OOP concepts 1. What are the access specifiers available in php ? Explain 2. What is object cloning ? 3. What are the differences between interface and abstract class ? 4. What is overloading ? 5. What is overriding ? 6. How to prevent function overriding ? 7. What is the use of "final" keyword ? 8. What is static variable ? How will access a static variable ? What is static class ?
Explain how is it possible to set an infinite execution time for php script?
What is the use of namespace in php?
What is magic function in php?
delete session variable when close browser with out logout
What are php errors?