here is the gist:
PHP Code:
<?
$gifdata = base64_decode("insertsomerealgifdatahere");
$spooge = "Location: [url]http://www.gofuckyourself.com[/url]";
header("Content-type: image/jpeg");
header($spooge);
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache");
header("Cache-Control: post-check=0, pre-check=0");
header("Pragma: no-cache");
echo $gifdata;
?>
I'll let you guys figure out the rest....
