+ 1

About_PHP_Function’s

Hi guys What is difference between post and get?

27th Nov 2021, 9:02 PM
Engr Abdulkarim Usman Ali Alrashidi
Engr Abdulkarim Usman Ali Alrashidi - avatar
3 Respuestas
+ 4
Post is „sealed in envelope“ and not visible. Get is the opposite.
27th Nov 2021, 9:50 PM
JaScript
JaScript - avatar
+ 1
Please always tag the language you're asking about. https://code.sololearn.com/W3uiji9X28C1/?ref=app
27th Nov 2021, 11:25 PM
Simon Sauter
Simon Sauter - avatar
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.
26th May 2022, 9:39 PM
Engr Abdulkarim Usman Ali Alrashidi
Engr Abdulkarim Usman Ali Alrashidi - avatar