Well, seeing as your first page is offline, I thought I might as well introduce you to the 'One line Rotating Signature' that I just made.
surprised
(Yes, it's three lines with the script tags. Don't be perdantic.)
<?php
header("location: ./".((($number = (($number_of_pictures = /*EDIT THIS NUMBER! -->*/ 7 /* <-- */) && ($temp = (isset( $_COOKIE['mwarotate'] ))?( $_COOKIE['mwarotate']+1 ):1) && ($temp == $number_of_pictures))?0:$temp) && (setcookie( "mwarotate", $number, time()+60*60*24*365, "/" ) || 1 ))?( ($number==0)?$number_of_pictures-1:$number-1 ):"error").".png")
?>
To use it, find where it says $number_of_pictures = 7. Then change 7 to however many images you have in your signature.
Then give each of your images a number, starting from 0, to deside the order they will come in.
Then create an error image incase something goes wrong, and name it error.
Then shove it all in a folder and upload.
NOTE: This script assumes .png files. If you are using another filetype, simply change .png to the correct extention.
cool
(Yes, I know this is rediculously small. I was bored.
The four line version is as follows:
<?php
$number_of_pictures = 7;
$number = (($temp = ( isset( $_COOKIE['mwarotate'] ) )?($_COOKIE['mwarotate']+1):1) && $temp == $number_of_pictures)?0:$temp;
setcookie("mwarotate", $number, time()+60*60*24*365, "/")
header("location: ./".(($number==0)?$number_of_pictures-1:$number-1).".png")
?>
Exactly the same procedure, just more readable.
razz )