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
What is the use of $_request variable?
Why do you need php?
What happens if an expected input field was not submitted?
What is composer phar?
Tell me how the result set of mysql be handled in php?
What are the 5 types of data?
Is php dead 2019?
What is the best way to change the key without changing the value of a php array element?
What is php glob?
How can I display text with a php script?
How can we automatically escape incoming data?
What is lamp in php?
What is php beginner?
What is xss and csrf?
What are string functions?