+ 1
Between GET and POST method in PHP which is more secure and why
Between GET and POST method in PHP which is more secure and why
4 Antworten
+ 9
(WIKIPEDIA)
GET requests a representation of the specified resource. Note that GET should not be used for operations that cause side-effects, such as using it for taking actions in web applications. One reason for this is that GET may be used arbitrarily by robots or crawlers, which should not need to consider the side effects that a request should cause.
and
POST submits data to be processed (e.g., from an HTML form) to the identified resource. The data is included in the body of the request. This may result in the creation of a new resource or the updates of existing resources or both.
+ 6
POST is more secure than GET.
+ 4
POST more secure. GET method send data in url like
www.yourpage.com/index.html?id=35&customdata=something
+ 1
why