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
How do you call a constructor for a parent class?
How to find length of an array in php ?
Who is the father or inventor of php?
How to access a global variable inside a function?
Does php need to be installed?
Is it possible to extend the execution time of a php script?
What are the uses of implode() function?
What is the difference between implode() and explode() in php?
Does php support multiple inheritances?
What is the tags in PHP is not a valid way to begin and end a PHP code block?
Is session a cookie?
What is fetch array in php?
What is == and === in php?
How to remove html tags from data in php?
How to create and destroy cookies in php?