+ 1
About_PHP_Function’s
Hi guys What is difference between post and get?
3 Respuestas
+ 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.