+ 3

What is difference between post and get method in php

9th Mar 2017, 4:56 PM
ravish kumar
ravish kumar - avatar
2 Respostas
+ 1
HTTP POST requests supply additional data from the client (browser) to the server in the message body. In contrast, GET requests include all required data in the URL. The method specified determines how form data is submitted to the server. When the method is GET, all form data is encoded into the URL, appended to the action URL as query string parameters. With POST, form data appears within the message body of the HTTP request.
9th Mar 2017, 6:06 PM
Nazareth Haroutioun Keshishian
Nazareth Haroutioun Keshishian - avatar
+ 1
which provide more security?
10th Mar 2017, 2:57 PM
ravish kumar
ravish kumar - avatar