What is important or most security (post).or.(get) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is important or most security (post).or.(get)

11th Sep 2017, 6:15 PM
mostafa Ahmed Abdelaziz
mostafa Ahmed Abdelaziz - avatar
2 Answers
+ 3
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. So essentially GET is used to retrieve remote data, and POST is used to insert/update remote data.
11th Sep 2017, 6:23 PM
MsJ
MsJ - avatar
0
thanks alot man
11th Sep 2017, 6:55 PM
mostafa Ahmed Abdelaziz
mostafa Ahmed Abdelaziz - avatar