4
आप CURL के साथ POST डेटा कैसे प्रदर्शित करते हैं?
एक उदाहरण के रूप में, -v तर्क के साथ एक वेब सर्वर पर पोस्टिंग: curl -v http://testserver.com/post -d "firstname=john&lastname=doe" और आउटपुट > POST /post HTTP/1.1 > User-Agent: curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.19.7 OpenSSL/0.9.8l zlib/1.2.3 > Host: testserver.com > Accept: */* > Content-Length: 28 > Content-Type: application/x-www-form-urlencoded > < HTTP/1.1 200 OK (etc) …