function curl($urlcurl,$postcurl,$cookiescurl){ $ch=curl_init ($urlcurl); $ua = 'Opera/9.64 (Windows NT 5.1; U; ru) Presto/2.1.1'; curl_setopt($ch, CURLOPT_USERAGENT, $ua); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_USERAGENT, $ua); curl_setopt($ch, CURLOPT_REFERER, $ref); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $PostData); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_COOKIE, $cookiescurl); curl_setopt($ch, CURLOPT_POSTFIELDS, $postcurl); $page=curl_exec($ch); return $page; }