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
What is null value in php?
Explain some of the php array functions?
Echo is used to Display message on screen. Which is used with echo to not output the trailing newline?
In php, objects are they passed by value or by reference?
What are string functions?
Explain me is multiple inheritance supported in php?
How to count all the lines of code in a directory and sub folder?
What is the use of mysql_real_escape_string() function?
How do you check is php not empty?
What is the purpose of php?
How to enable cURL in PHP?
What is the use of addslashes in php?
What are the options to transfer session ids?
How to create a text file in PHP?
Write a program to show the joining of two strings in php?