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 member variable?
Which software is best for php?
How can you get web browser’s details using PHP?
What are global variables in php?
Explain some of the php string functions?
write a prog using insert,update,delete in this manner as output? name: phno. add button 1.name phno. edit button delete button 2.
Tell me whether it is possible to share a single instance of a memcache between multiple php projects?
Is java is better than php?
Which function is used in php to count the total number of rows returned by any query?
Is php outdated 2019?
Is php an array?
What are some new features introduced in php7?
Tell me how can we define a variable accessible in functions of a php script?
Do I need apache for php?
What is the use of mvc in php?