EDIT] = Naruto & Tenchi Muyo & Lain siggies added
Note: If you can't see my siggy, its either 'cuz im downloading anime

, or the server is down
What do you guys think of my signature? Look below (waay below), it changes every refresh, has your ip address, and a view count (which is high due to extensive testing).
1 - total crap
2 - worst one you've ever seen
3 - terrible
4 - bad
5 - below average
6 - 'ok'
7 - above average
8 - decent
9 - really good
10 - awesome
So far i have
22 banners (each under 65Kb, and is 772px by 151px), each of a different anime series listed below.
Ah! My Goddess - gotta replace that, its outdated
Air - took off of ishin
Ai Yori Aoshi
Azumanga Daioh - also off of ishin
Bleach
Chobits - and off of ishin
Cowboy Bebop - changed by request
Elfen Lied
Futakoi - took
forever
Gunslinger Girl - 'cuz alex ordered the set
Inuyasha - style's avatar
Kanon - off of inshin
Kimi Ha Nozomu Eien - some thread mentioned it
Love Hina - wolfie is going to kill me
Mahoromatic - off of inshin
Magister Negi Magi
Naruto - just added
One Piece
School Rumble
Serial Experiments Lain - just added
Tenchi Muyo - just added
Vandread - also changed by request
Guess who reque
sted th
e changes
lol
PHP Script I used... (I hate looping GIFs XD)
PHP Code:
|RANDOMIZING SCRIPT|
<?php
//$dirname is the directory where the images are stored.
//The images MUST be stored in a folder.
//Enter it in the following format: directoryname/
$dirname = "pictures/";
//Do not edit below here. Unless you know what you're doing of course :P
$dir = opendir($dirname);
$i = -1;
while (false !== ($file = readdir($dir)))
{
if (is_readable("$dirname/$file"))
{
$img_array[$i] = $file;
$i++;
}
}
$r = rand(1, $i - 1);
$img = $dirname.$img_array[$r];
header("location: $img");
?>
|IP AND HIT COUNT SCRIPT|
<?php
//Ip address and hit count script (shortened)
// You MUST create a blank text file for the script to write down the viewed times
$TextFile = "counter.txt";
$Count = trim(file_get_contents($TextFile));
$FP = fopen($TextFile, "r");
$Count=fgets($FP, 4096);
fclose ($FP);
settype($Count, "integer");
$Count++;
if ($FP = fopen ($TextFile, "w")){
fwrite ($FP, $Count);
fclose ($FP);
}
//The 'image' i used was the other script
$image = "random.php";
$im = imagecreatefromjpeg($image);
//Color allocation for the text, or else it'll all turn out black
$Kaijin = ImageColorAllocate ($im, 72, 118, 255);
$hits = ImageColorAllocate ($im, 255, 0, 0);
$ip = ImageColorAllocate ($im, 255, 255, 255);
$hit = "$Count";
$ip = $_SERVER["REMOTE_ADDR"];
// Those numbers are the text size, vertical position, and horizontal position (respectively)
// Stuff in quotes is what you want displayed (hehe)
// Last bit is the color from above
ImageString($im, 3, 685, 5, "| Kaijin |", $Kaijin);
ImageString($im, 2, 1, 120, " Your ip: $ip", $ip);
ImageString($im, 2, 1, 135, " Viewed $hit times ", $hits);
header("Content-Type: image/jpg");
Imagejpeg($im,'',100);
ImageDestroy ($im);
?>
Go ahead and use that script if you want to

(...oh the hours spent on that XD)
And also please mention which anime series you think i should make a banner out of next, i need more stuff to do this week
