What's diffrence between Get() and Post() Function
Answers were Sorted based on User's Feedback
Answer / shafique
Get shows information travling on the address bar
but pet do not shows in this way the post method is more
secure than get
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / janakiraman
As said above, i also want to include another point, through
get() method we can send onnly 100 characters, so get()
method as limitation on the information send. whereas post()
method doesn't have any limitaions.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / ratan 88 01916 546547
Get() variable will show all parameter in address bar but
post not show. Get() nomber of character limited only 150
but post is unlimited.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / prayas
well including all ,there is one more thing i.e
under GET()Method, we use Request.Querystring to acquire
the form info.But in POST()method,we use Request.Form to
acquire form info.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rama
get() method we can send only 100 characters
post() method send (in php 8mb it is default in php.ini
file) it can change using ini_set
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / saurabh kumar
Get shows information travling on the address bar
but post do not shows in this way the post method is more
secure than get. With the help of get method we can send 100
charecter.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sri harsha
In get() method form values are send by url and is not secure.
In post() method form values are send along with headers and
was secure.
get method is faster than post method.
| Is This Answer Correct ? | 0 Yes | 3 No |
What is the use of mysql_fetch_assoc in php?
What are the functions of string?
If there are 10 text boxes in a form having same name, their value are different. Value of which textbox will be received on action script?
20 Answers A1 Technology, Bajaj, DG, Genpact,
How many different types of messages available in php?
How does integrate SSL certificate in websites and also how to generate CSR in Local machines? plese give some ideas ASAP.....
What is the default time in seconds for which session data is considered valid?
What is a http session?
What is meant by an associative array?
How is it possible to return a value from a function?
Why do we use javascript in php?
Tell me what types of loops exist in php?
Is it necessary to use closing tag in php?sometime without closing tag things work.why?