Put this code in a file and name it whatever.php
Upload it on some (free) webhosting that supports PHP and file_get_contents() method.
<?php
if(isset($_GET["pid"]))
{
// Retrieve the image.
$zoigfile = file_get_contents('http://www.zoig.com/actions/getphoto.php?cid='.$_GET["pid"]);
// Set the content type header - in this case image/jpeg
header('Content-type: image/jpeg');
// Now output the image.
echo $zoigfile;
}
?>
Then you can access the script http:// whatever.somefreehosting.com/whatever.php?pid=bigffbb
LOL, you can do that right ?
Just kidding.