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 |
What is encapsulation in oop php?
What is a php namespace?
What is a php form?
Why we use get in php?
What should we do to be able to export data into an excel file?
Why framework is used in php?
How cookies are transported from browsers to servers?
I went to an php interview yesterday.I got selected there.But,They asked me to sign bond by submitting my certificates for 2 years.Is it good or bad
Explain how we can retrieve the data in the result set of mysql using php?
Can we embedded directly PHP code into XHTML document? State Whether True or False?
if i give Limit for mysql query through php command line script like this for ex. $limit=500; $total_items = 1500; for($start=0;$start<$total_items;){ $command = "/usr/bin/php -q /home/sitename/public_html/admin/feedmanager/test.php feedid ".$_GET['feedid']." start ".$start." end ".$limit ; $start = $start+$limit; $command_result = system($command); } so it's execute command for 3 times so it give limit to sql query but if i have 27000 data so it takes long time? so my question is that is that any way from php command line script that i can use for collect all the data at once?
Can php run without server?