Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
test
[IMG]javascript:document.location='http://www.albinoblacksheep.com/flash/you.html'[/IMG]
the image i posted up there isn't an image it's a php script that writes that info on the fly
$im = ImageCreateFromPng("bg.png");
$txtcol = imagecolorallocate($im, 255, 255, 255);
$string = "Your IP is ".getenv('REMOTE_ADDR');
$iw= imagesx($im);
$sw = imagefontwidth(5)*strlen($string);
$sx = ($iw-$sw)/2;
imagestring($im, 5, $sx, 25, $string, $txtcol);
$string = "Sakarin says";
$txtcol = imagecolorallocate($im, 255, 255, 255);
$sw = imagefontwidth(5)*strlen($string);
$sx = ($iw-$sw)/2;
imagestring($im, 5, $sx, 67, $string, $textcol);
$string = "The colors suck i know";
$textcol = imagecolorallocate($im, 255, 255, 255);
$sw = imagefontwidth(5)*strlen($string);
$sx = ($iw-$sw)/2;
imagestring($im, 5, $sx, 80, $string, $textcol);
header("Content-type: image/png");
imagepng($im);
?>```
and an .htaccess entry like this
```markupRedirect permanent /app/images/bg.png http://www.pedrogoya.com/app/images/sak.php```