View Single Post
Old 21st August 2009, 11:37   #6
bored_womble
Winamp's Womble
 
bored_womble's Avatar
 
Join Date: May 2004
Location: Wimbledon Common
Posts: 1,088
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$errstr10);
$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($fp8192); } fclose($fp);
?>

Without open minds the world will die. Open yours and correct the mistakes you are making right now.
bored_womble is offline   Reply With Quote