Displays your ip in an image like mine in my signature
make a folder with the name of "sig.png" and upload to your ftp server and open notepad and put this code
PHP Code:
<?
$im = imagecreate(250, 100);
$bg = imagecolorallocate($im, 0, 0, 0);
$textcolor = imagecolorallocate($im, 225, 0, 0);
$ip = $_SERVER["REMOTE_ADDR"];
imagestring($im, 5, 15, 40, "Your Ip Is " . $ip, $textcolor);
header("Content-type: image/png");
imagepng($im);
?>
save it as index.php and upload it inside the sig.png folder
then its done
put it in your sig like this
[img ]http://YOUR-SITE.com/sig.png[/ img]
with no spaces