Found this on a [French] forum... you need curl...
<?php
$adresse='http://www.orange';
$proxy='192.168.1.1:3128';
$cUrl = curl_init();
curl_setopt($cUrl, CURLOPT_URL, $adresse);
curl_setopt($cUrl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($cUrl, CURLOPT_TIMEOUT, '30');
curl_setopt($cUrl, CURLOPT_PROXY, $proxy);
$pageContent = trim(curl_exec($cUrl));
curl_close($cUrl);
echo $pageContent;
?>