Merhaba ;
http://www.milliyetemlak.com/haber bu adrese aşağıdaki 2 kodu denememe rağmen, giriyorum ama. ilan arama ekranı geliyor karşıma. Browserda girdiğimiz gibi olmuyor...
2 sinide denedim, hem fonksiyonu hem file_get i ama işe yaramadı...
function cek($url)
{ $ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_HEADER,true);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
curl_setopt($ch,CURLOPT_REFERER,"http://www.google.com");
curl_setopt($ch,CURLOPT_USERAGENT,"googlebot");
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$cek = cek("http://www.milliyetemlak.com/haber");
$homepage = file_get_contents('http://www.milliyetemlak.com/haber');