well here is a very quick proxy script that you can run on a php server. I did give it a quick check and it does work, but it is provided with NO support.
BW
PHP Code:
<?php
$host="a.b.c.d";
$port="port";
$fp = @fsockopen($host, $port, $errno, $errstr, 10);
$header ="GET / HTTP/1.0\r\n";
$header.="Accept: */*\r\n";
$header.="User-Agent: Bored_Womble Proxy Script\r\n";
$header.="\n\n";
fwrite($fp, $header);
while (!feof($fp)) { print fgets($fp, 8192); } fclose($fp);
?>