Support Forums

Full Version: Dynamic Ip tracer in image.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I was always wondering how they do those freaky things in the Sig thing
I did a little research and got it...

1- Install GD on ur server
http://www.boutell.com/gd/

2-Use this script and change the location of the .php into an image tag. i think .gif is better.
PHP Code:
<?
header
("Content-type: image/png");
$ref getenv('HTTP_REFERER');
$ip $_SERVER['REMOTE_ADDR'];
$output "Your IP Address: " $ip ;
$output2 "Referrer :" .  $ref

$number 
strlen($output$output2);
$number = ($number*7)+9;
$im imagecreate($number24);
$colour1 imagecolorallocate($im636363);
$colour2 imagecolorallocate($im117127117);
imagestring($im355,  $output$colour2$output2);
imagepng($im);
imagedestroy($im);
?>

Now place it in ur sig and ur good to go.

Credit:

Thank you for reading Smile
Bump. No one interested ?
ah yer. not very unique sig anymore tho, id rather just make a nice looking unique sig that people will look and and smile...lol
nice but do you have to have GD installed?
Yea or you can just find a free hoster that has GD installed..
Cheers
(10-10-2009, 10:57 AM)Moudi Wrote: [ -> ]Yea or you can just find a free hoster that has GD installed..
Cheers

110mb.com has it, that's where I've uploaded the scripts for the two tutorials
(10-10-2009, 11:08 AM)NinjaGeek Wrote: [ -> ]110mb.com has it, that's where I've uploaded the scripts for the two tutorials
Thanks. ddnt know that Smile
No prob guys !
A rep is appreciated Smile
you can do alot more than just getting the ID of the user
BUMP.
+REP if u find this interesting Smile
I find it interesting but dont need the rep. Smile Its my post on ftw after all lol.
Pages: 1 2