Quote Originally Posted by BatteriWyfe View Post
Oh really an img tag can do all that?
Quote Originally Posted by Autistic Spectrum View Post
it's not an img tag lisa it's loading something off another server

like imggur or w/e is on another server and iplogger gifs log everyone's ip address who vies the picture and let's the user who used that iploggers' ip adress'es
Code:
<?php
$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$textcolor = imagecolorallocate($img_number,255,255,255);

imagefill($img_number,0,0,$backcolor);
$number = " Your IP was archived: $_SERVER[REMOTE_ADDR]";

Imagestring($img_number,10,5,5,$number,$textcolor);

header("Content-type: image/jpeg");
imagejpeg($img_number);
?>