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 |
Which method removes the last element from the end of an array?
How to access a specific character in a string?
Is PHP an open source software?
How can I check if a value is already in an array?
3 Answers Rushmore Consultancy,
What is Different between Joomla And Magento?
What is the difference between javascript and php?
What do you mean by MVC ?
What is the exact Diff. between include_once() and require_once() in PHP?
How to run the interactive php shell from the command line interface?
What is the use of ajax in php?
How can you make a connection with mysql server using php?
Can you define an argument as a reference type?