what is the difference between GET and POST?
Answer Posted / nikhilkumar bagla
GET :-
-it is used to send information from a form with Get Methods.
-it will be displayed in the browser's address bar(its visible).
-it has limits on the amount of information to send (max. 100 characters).
-When using method="get" in HTML forms, all variable names and values are displayed in the URL.
POST:-
-Information sent from a form with the POST method is invisible to others.
-it has no limits on the amount of information to send.
-by default 8 Mb max size for the POST method, (can be changed by setting the post_max_size in the php.ini file).
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are the string function in php?
How to reset/destroy a cookie?
How many php functions are there?
Tell me how is it possible to know the number of rows returned in result set?
Which parts of php are case sensitive?
Tell us how to set cookies in php?
What is use of in_array() function in php?
What is putenv?
How the values are ordered in an array?
What is polymorphism?
Write a statement to show the joining of multiple comparisons in php?
How to check an key is exists in array?
Why echo is faster than print in php?
How cookies are transported from servers to browsers?
Write a program to upload a file in php?