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
Why is used in php?
How do you create an array in php?
Which parts of php are case sensitive?
Is php easy language to learn?
What are the different types of statements that are present in php?
Tell me in php, objects are they passed by value or by reference?
What is mod_php?
What is difference between get and post?
What is the role of php.ini file?
Explain how you can update memcached when you make changes to php?
Why php script is not running in browser?
What can php do?
Are parent constructors called implicitly inside a class constructor?
Is php a low level language?
What is the correct syntax of mail() function in php?