<?php

function curl_get($url){ 
$curl = curl_init(); 
curl_setopt($curl, CURLOPT_URL, $url); 
curl_setopt($curl, CURLOPT_PROXY, "207.32.30.20:8080"); 
curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); 
curl_setopt($curl, CURLOPT_USERAGENT,'Opera/9.80 (Windows NT 5.1; U; ru) Presto/2.2.15 Version/10.10'); 
curl_setopt($curl, CURLOPT_FAILONERROR, true); 
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); 
curl_setopt($curl, CURLOPT_REFERER, "http://w...content-available-to-author-only...u.com/"); 
curl_setopt($curl, CURLOPT_RETURNTRANSFER,1); 
curl_setopt($curl, CURLOPT_TIMEOUT, 30); 
$cnt = curl_exec($curl); 
curl_close($curl); 
return $cnt; 
}

echo curl_get('http://w...content-available-to-author-only...u.com/bets.php?m=chemps&id_sport[]=7');