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 / 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 |
Post New Answer View All Answers
Tell me how can we change the maximum size of the files to be uploaded?
What is in php 7?
What is the use of namespace in php?
What are the encryption techniques in php?
What is $_ server request_method == post?
What are the advantages of stored procedures, triggers, indexes in php?
What is good average session duration?
What are static variables in php?
What is PECL?
Why do we use csrf token?
What is the use of php and mysql?
Which is faster for or foreach php?
What is the functionality of the functions strstr() and stristr()?
How to submit form without a submit button.
How to get length of an array in PHP?