what is the post and get method??
Answers were Sorted based on User's Feedback
Answer / psharma05
get method send the data in query string and limited data.
post method send the data in hidden form and send unlimted data.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gladys
In the get method the data made available to the action page
by the URL so data can be seen in the address bar where as
in the post method the data will be available as data blocks
and not as query string.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / mohamed amirudeen
GET METHOD:
if your are using method to be "get" in the form,
then by clicking the submit button,all the values inserted
in the textbox which is found inside the form will be
displayed in the URL.
POST METHOD:
here when the method is made as "post" then the
value inserted in the textbox inside the form will not be
seen on the URL.Hence its for security purpose.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / vivek soni
Get Method:
It displays the submited value in the URL and its used
for max 100 character of small applications....
Post method :
Where as post method is secured,it doesnot show value in
the URL ,and it can be used in large applications .
Here there is no limit to send information via post
method...
Post method is Secure compare to get method...
| Is This Answer Correct ? | 0 Yes | 1 No |
How would you impletement download and upload a file in php
How to call php function in jquery?
Why do we use sessions in php?
What is a composer?
What is api used for?
When are you supposed to use endif to end the conditional statement?
What is global array in php?
Is php a strongly typed language?
where to change in php.ini file for file uploading?
What is the use of php and mysql?
What is the meaning of php?
What is the difference between $message and $$message ?