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
Tell me how can we connect to a mysql database from a php script?
How is it possible to set an infinite execution time for php script?
What is the difference between characters 34 and x34?
How do I install php?
What is the use of $_request variable?
write a note on Testing the web site
What is php resource type?
How do you find the length of a string in php?
Where is session id stored?
What is symfony php?
So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?
How can we create a database using php?
Tell me what should we do to be able to export data into an excel file?
Why would we use === instead of ==?
What are the differences between require and include?