+ 1
About_PHP_Functionâs
Hi guys What is difference between post and get?
3 Answers
+ 4
Post is âsealed in envelopeâ and not visible. Get is the opposite.
+ 1
Please always tag the language you're asking about.
https://code.sololearn.com/W3uiji9X28C1/?ref=app
0
The GET and POST are two different types of HTTP requests.
GET is used for viewing something, without changing it
while POST is used for changing something. For example, a search page should use GET to get data while a form that changes your password should use POST. Essentially GET is used to retrieve remote data, and POST is used to insert/update remote data.