|
|
putasolutions
regular
Reg'd: Tue
Posts: 12521
Loc: Infinity and beyond
|
Re: Forum Sigs
Thu Jan 08 2004 11:05 AM
|
|
|
It uses a simple PHP script, such as the one below
<?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 is $REMOTE_ADDR";
Imagestring($img_number,10,5,5,$number,$textcolor);
header("Content-type: image/jpeg"); imagejpeg($img_number); ?>
It is visible to you alone
Of all the Things I've lost, I miss my mind the most
|
|
|
|
|