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
How to create a text file in PHP?
What is $row in php?
List some array functions in php?
How to calculate the difference between two dates using php?
How to get the IP address of the client/user in PHP?
Is uploaded file php?
What are the uses of explode() and implode() functions?
Explain the three different kinds of Arrays?
How does csrf token work?
How can we submit from without a submit button?
How come the code works, but does not for two-dimensional array of mine?
What is string and its function?
What's the difference between using mysql_ functions and pdo?
What is psr in php?
What is the output of the following php code?