Hi all i am using a curl script to go to a link and get its content for further manipulation. following is the link and curl script:
<?php
$url = 'http://criminaljustice.state.ny.us/cgi/internet/nsor/fortecgi?serviceName=WebNSOR&templateName=detail.htm&requestingHandler=WebNSORDetailHandler&ID=368343543';
//curl script to get content of given url
$ch = curl_init();
// set the target url
curl_setopt($ch, CURLOPT_URL,$url);
// request as if Firefox
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.15) Gecko/20080623 Firefox/2.0.0.15") );
curl_setopt($ch, CURLOPT_NOBODY, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result= curl_exec ($ch);
curl_close ($ch);
echo $result;
?>
ancak Web sitesi sonucunda kullanıcı istisna veriyor, ama biz normalde tarayıcıda url yapıştırın eğer sayfa mükemmel iyi açıyor komut dosyası aracılığıyla hariç değildir.
Ben burada yanlış ne yapıyorum, lütfen yardım.
Teşekkür ve saygılarımla