<? $ch = curl_init(); // oturum başlat //POST adresi curl_setopt($ch, CURLOPT_URL,"http://gdataonline.com/seekhash.php"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION , 0); curl_setopt($ch,CURLOPT_REFERER,"ceviz.net"); curl_setopt($ch, CURLOPT_POSTFIELDS,"hash=93e601638b4c144ca7ebd2541b14f4fe"); curl_exec ($ch); curl_close ($ch); ?>
Curl
5
●665
- 05-07-2010, 15:00:48Merhaba arkadaşlar ; http://gdataonline.com/seekhash.php bu sayfaya md5 postluyorum aşağıdaki kodlar ile, Ama Please disable any ad-blocking software you currently have activated in order to help keep GDataOnline.com a free service. yazan bir sayfaya yönlendiriyor. acaba nasıl aşabiliriz bu sorunu
- 05-07-2010, 15:07:36proxy servisleriyle işlem yapılıyor. Bir çözümü olmalı.vBulletinMaster adlı üyeden alıntı: mesajı görüntüle
- 05-07-2010, 15:55:32
<?php function coz($coz) { $site = file_get_contents('http://gdataonline.com/seekhash.php'); $kod = explode('name="code" value="',$site); $kod = explode('"',$kod[1]); $curl = curl_init(); $post = 'code='.$kod[0].'&hash='.$coz; curl_setopt($curl, CURLOPT_URL, 'http://gdataonline.com/seekhash.php'); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_POST,true); curl_setopt($curl, CURLOPT_POSTFIELDS,$post); $cikti = curl_exec($curl); curl_close($curl); $al = explode('<td width="35%">',$cikti); $sonuc = explode('</td>',$al[1]); return $sonuc[0]; } echo coz('5583413443164b56500def9a533c7c70'); ?>????? - 05-07-2010, 16:24:31hemen deniyorum, Çok sağol..AKoyun adlı üyeden alıntı: mesajı görüntüle