################################[config]##################################
$login = 'своё мыло';
$pass = 'свой пароль';
#
set_time_limit(0);
ignore_user_abort(1);
################################[postdata]################################
$login = str_replace('@','%40',$login);
$url = 'http://srv2.murclub.ru/xmls/xml_proxy.php';
$ua = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7 (.NET CLR 3.5.30729)';
$ref = 'http://murclub.ru/flash/MXMLSocketProxy.swf?1163';
//$go = 0;
################################[cURL chek]##############################
if(!@function_exists(curl_init))
{
echo '
cURL not Supported
'; exit;
}
################################[cURL]####################################
if(@$_GET['go'] != 1){ exit; }
for (;;) {
$cook = 'mur_mail='.$login.'; mur_pass='.md5($pass).';';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
curl_setopt($ch, CURLOPT_COOKIE, $cook);
curl_setopt($ch, CURLOPT_REFERER, $ref);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'query=SALARY');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$res = curl_exec($ch);
################################[regepx]##################################
if(preg_match('#salarytime=\"(.*?)\"#',$res,$matches))
{
$time = $matches[1] / 60;
}
sleep(60);
}
?>