Yeninesil44 adlı üyeden alıntı

o sitede veriler direk ekrana basılmıor kaynak kodda varsa cekebilirsiniz, http://www.whois.com.tr/process.php buraya domain:wmaraci.com
tld:
sid:13
şu sekilde bi post göndermeniz lazım burdan gelior veriler


Hocam şöyle yapotım ama başaramadım yardım edebilir misiniz?

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.whois.com.tr/process.php");
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'somedirectory/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'somedirectory/cookies.txt');
// cookies.txt: cookie'lerin kaydedileceği dosya
curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, array(
'domain' => 'wmaraci.com ',
'tld' => '',
'sid' => '13',
'submit' => 'Send'
)); // Gonderilecek form elemanlarının girişi
$result = curl_exec($ch);
curl_close($ch);

?>