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 / tushar kumar kundan
The built-in $_GET function is used to collect values from a
form sent with method="get".
Information sent from a form with the GET method is visible
to everyone (it will be displayed in the browser's address
bar) and has limits on the amount of information to send
(max. 100 characters).
============================================================
The built-in $_POST function is used to collect values from
a form sent with method="post".
Information sent from a form with the POST method is
invisible to others and has no limits on the amount of
information to send.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Do you know what does $globals means?
how to open & closing opening period in fico
What is the function of mysql_real_escape_string in php?
How to delete a file from the system?
What are php variables?
How many functions are there in php?
What is difference between echo and print_r in php?
What is difference between get and post in php?
How do you use an array in excel?
How should a model be structured in mvc?
Tell me how to initiate a session in php?
Swap two variables value without using third variable in php ?
What sized websites have you worked on in the past?
What is isset and unset in php?
How to get elements in reverse order of an array in php?