SORU
26 Ocak 2010, Salı


PHP curl, HTTP örnek kod YAZI mı?

Herkes nasıl yapılacağını bana göster bir php bir HTTP POST ile curl olabilir?

Bu şekilde veri göndermek istiyorum:

username=user1, password=passuser1, gender=1

www.domain.com

result=OK gibi bir yanıt dönmek için curl bekliyorum. Herhangi bir örnek var mı?

CEVAP
26 Ocak 2010, Salı


Php/curl örnekleri burada bulabilirsiniz: http://curl.haxx.se/libcurl/php/examples/ özellikle http://curl.haxx.se/libcurl/php/examples/simplepost.html


<?php
//
// A very simple PHP example that sends a HTTP POST to a remote site
//

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"http://www.mysite.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
            "postvar1=value1&postvar2=value2&postvar3=value3");

// in real life you should use something like:
// curl_setopt($ch, CURLOPT_POSTFIELDS, 
//          http_build_query(array('postvar1' => 'value1')));

// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$server_output = curl_exec ($ch);

curl_close ($ch);

// further processing ....
if ($server_output == "OK") { ... } else { ... }

?>

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • DRDAnimation

    DRDAnimation

    28 EYLÜL 2012
  • TecnoTutosPC

    TecnoTutosPC

    19 Kasım 2012
  • wolfys you tube

    wolfys you t

    22 Kasım 2006