+ 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

25th Apr 2017, 11:04 AM
Bijay Kumar Nayak
Bijay Kumar Nayak - avatar
4 Answers
+ 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.
25th Apr 2017, 12:53 PM
Jérémie Agossouvi
Jérémie Agossouvi - avatar
+ 6
POST is more secure than GET.
25th Apr 2017, 12:47 PM
Jérémie Agossouvi
Jérémie Agossouvi - avatar
+ 4
POST more secure. GET method send data in url like www.yourpage.com/index.html?id=35&customdata=something
25th Apr 2017, 11:08 AM
Yaroslav Pieskov
Yaroslav Pieskov - avatar
+ 1
why
25th Apr 2017, 12:49 PM
Bijay Kumar Nayak
Bijay Kumar Nayak - avatar