Показать сообщение отдельно

  #2  
Старый 19.03.2009, 03:05
Pashkela
Динозавр
Регистрация: 10.01.2008
Сообщений: 2,841
Провел на форуме:
9220514

Репутация: 3338


Отправить сообщение для Pashkela с помощью ICQ
По умолчанию

PHP код:
<?php 
set_time_limit
(0); 
$url "https://hashcracking.info/index.php?4"
$ref "https://hashcracking.info/index.php"
$ua "Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.4) Gecko/2008102920 AdCentriaIM/1.7 Firefox/3.0.4"
$ch curl_init($url); 
curl_setopt($chCURLOPT_USERAGENT$ua); 
curl_setopt($chCURLOPT_REFERER$ref); 
curl_setopt($chCURLOPT_COOKIEJAR"./cook"); 
curl_setopt($chCURLOPT_COOKIEFILE"./cook"); 
curl_setopt($chCURLOPT_RETURNTRANSFER1); 
curl_setopt($chCURLOPT_SSL_VERIFYPEER0); 
curl_setopt($chCURLOPT_SSL_VERIFYHOST0); 
$res curl_exec($ch); 
preg_match_all('#[0-9a-f]{32}#i'$res$matches); 
print_r($matches); 
?>
 
Ответить с цитированием