Dostum bende curlda sıkıntı yaşıyordum mesajına denk geldim istersen sana n11 için curl bağlantısını atayım sende oradan işine yarayanı alırsın 4 gündür kafayı yedirdi bana

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 00:10:36 -->-> Daha önceki mesaj 00:06:27 --
$link = "nereye bağlantı yapacaksan oranın adresi";
$postxml = ' buraya post edeceğin bilgiyi gir';
$headers = array(//buraya header bilgilerini gir
"Content-length: ".strlen($postxml),);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $link);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postxml);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
curl_close ($ch);
var_dump($response);
Yukarısı xml request sistemi için mantığı algılarsan kendin içinde rahatlıkla editleyebilirsin.