<?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');
?>
?????