What do mods use to measure sig size?

Haha,, Ok I have completed the sig. Only a rough one. I will make it better once I have had some sleep.

You get the idea.

Edit: Blighter, your webspace is pretty damn good.. Very informative.
 
Last edited:
In confused too. How do you rotate your sigs?

I have done a little more work to my new sig.. Added a drop shadow and took away the Airbourne logo. Seems a lot smoother and more 'together'.
 
In confused too. How do you rotate your sigs?

I have done a little more work to my new sig.. Added a drop shadow and took away the Airbourne logo. Seems a lot smoother and more 'together'.

Code:
<? 

$array[200]; 
$elem = 0; 
$dirname = "sigs"; 
$dh = opendir($dirname); 
while ($file = readdir($dh)) { 
if (!is_dir("$dirname/$file")) 
$array[$elem] = $file; 
$elem = $elem + 1; 
} 

srand((double)microtime() * 10000000); 
$rand_keys = array_rand($array); 
$temp = $array[$rand_keys]; 

header("Location: $dirname/$temp"); 

?>

That rotates all the images in the "sigs" folder.
e.g. That code is saved as http://blighter.net/signature/index.php on my server, so it rotates all the images in http://blighter.net/signature/sigs. Then when you set your signature you just type:
[img*]http://blighter.net/signature/index.php[*/img]

(and remove the stars, obviously!)
:)
 
Ohh cheers. Ill have a look into that tomorrow. Well, later this morning that is.

Im going to bed. Night all.

goodnight%5B1%5D.jpg
 
Code:
<? 

$array[200]; 
$elem = 0; 
$dirname = "sigs"; 
$dh = opendir($dirname); 
while ($file = readdir($dh)) { 
if (!is_dir("$dirname/$file")) 
$array[$elem] = $file; 
$elem = $elem + 1; 
} 

srand((double)microtime() * 10000000); 
$rand_keys = array_rand($array); 
$temp = $array[$rand_keys]; 

header("Location: $dirname/$temp"); 

?>

That rotates all the images in the "sigs" folder.
e.g. That code is saved as http://blighter.net/signature/index.php on my server, so it rotates all the images in http://blighter.net/signature/sigs. Then when you set your signature you just type:
[img*]http://blighter.net/signature/index.php[*/img]

(and remove the stars, obviously!)
:)
sweet.. think i'll do something similiar with mine :d
 
Code:
<? 

$array[200]; 
$elem = 0; 
$dirname = "sigs"; 
$dh = opendir($dirname); 
while ($file = readdir($dh)) { 
if (!is_dir("$dirname/$file")) 
$array[$elem] = $file; 
$elem = $elem + 1; 
} 

srand((double)microtime() * 10000000); 
$rand_keys = array_rand($array); 
$temp = $array[$rand_keys]; 

header("Location: $dirname/$temp"); 

?>

That rotates all the images in the "sigs" folder.
e.g. That code is saved as http://blighter.net/signature/index.php on my server, so it rotates all the images in http://blighter.net/signature/sigs. Then when you set your signature you just type:
[img*]http://blighter.net/signature/index.php[*/img]

(and remove the stars, obviously!)
:)

You might want to remove thumbs.db from that folder :p
 
For some bizarre reason, the old 'Rob Miller' rotate.php never worked for me, god knows why as everything was correct and was hosted on my own site!

I guess I'll give this a try now and see what occurs!
 
Back
Top Bottom