Answer Posted / anjithkumar.garapati
The Post method is more powerful request. By using Post we
can request as well as send some data to the server. We use
post method when we have to send a big chunk of data to the
server, like when we have to send a long enquiry form then
we can send it by using the post method.
The Get is one the simplest Http method. Its main job is to
ask the server for the resource. If the resource is
available then then it will given back to the user on your
browser. That resource may be a HTML page, a sound file, a
picture file (JPEG) etc. We can say that get method is for
getting something from the server. It doesn't mean that you
can't send parameters to the server. But the total amount of
characters in a GET is really limited. In get method the
data we send get appended to the URL so whatever you will
send will be seen by other user so can say that it is not
even secure.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How can you retrieve data from the mysql database using php?
What is the basic syntax of Php?
How to write php function in html onclick?
Explain me what is the difference between $_files['userfile']['name'] and $_files['userfile']['tmp_name']?
Tell me how is it possible to return a value from a function?
What u mean by query?
How do I install php and apache on windows 10?
What is difference between include and include_once in php?
How can we access the data sent through the url with the get method?
What is difference between strstr() and stristr() in PHP?
What is the correct syntax of mail() function in php?
What is a substring in php?
How to get the IP address of the client/user in PHP?
Is python easier than php?
Is PHP runs on different platforms (Windows, Linux, Unix, etc.)?