CURL ile gönderme Trouble [kapalı]

0 Cevap php

I this page verilerine cURL yazı yapmak için çalışıyorum txt_code=1605120090100999. Herkes bu sayfaya değer ve mesajlar çıkış olarak bana sonuç verir bana PHP kodu gösterebilir misin?

Ben bu çalıştı:

$url = 'http://195.246.54.62/support/mis_support.aspx';
$txt_code = '1605120090100999';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_COOKIEFILE,1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "txt_code=$txt_code");

// Execute...
$output = curl_exec($ch);
echo $output;

ama yazı olmadan bana sayfasını verdi

0 Cevap