Help for this page
$query = "http://www.google.com"; $proxy = "http://username:password\@proxy:port"; $ua->proxy('http',$proxy); $response = $ua->get($query);
$query = "http://www.google.com"; $proxy = "socks://username:password\@proxy:port"; $ua->proxy('http',$proxy); $response = $ua->get($query);