Beyler kodlar aynı aşağıda yazdığım gibi fakat gelen veri boş sayfa ve captcha png adresi sürekli değişken id=xxx adında bir değişkenle sürekli değişiyor sayfa metodu GET

CAPTCHA ADRESİ ÖRNEĞİ;
http://www.xxxxxxxxxx.com/security3.php?id=871
http://www.xxxxxxxxxx.com/security3.php?id=409
.....
......
http://www.xxxxxxxxxx.com/security3.php?id=331
http://www.xxxxxxxxxx.com/security3.php?id=574

en büyük sıkıntı captcha sayfa her refresh yaptığımda adres çubuğundaki id değişkeni değişiyor.



$cookie=" my_cookie";
$ch =curl_init();
curl_setopt($ch, CURLOPT_URL,"http://www.xxxxxxxxxx.com/security3.php");
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2');
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Host:www.xxxxxxxxxx.com ',
'Accept: image/png,image/*;q=0.8,*/*;q=0.5',
'Accept-Language: tr-TR,tr;q=0.8,en-US;q=0.5,en;q=0.3',
'Accept-Encoding: gzip, deflate',
'DNT: 1',
'Referer: http://www.xxxxxxxxxx.com/captcha-captch/ ',
'Connection: keep-alive'));
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
curl_setopt($ch, CURLOPT_COOKIE, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR,$cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE,$cookie);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_ENCODING,"" );
curl_exec($ch);
curl_close($ch);



YARDIM EDEBİLİR MİSİNİZ