What is the difference between $ _GET and $ _POST? [duplicate]

-4

Could you explain in detail what they are? And also give examples of how they work?

    
asked by anonymous 19.06.2017 / 19:00

1 answer

1

The big difference between GET and POST methods is probably visibility. A GET request is sent as a string appended to the URL, whereas the POST request is encapsulated next to the body of the HTTP request and can not be viewed

    
19.06.2017 / 19:03