Random Sig Generator
In any event, you're already at the limit for signature images, any additional images would exceed the guidelines unless you shrank your current image.
In any event, you're already at the limit for signature images, any additional images would exceed the guidelines unless you shrank your current image.
I'm not trying to add another image. Just have it there until I get it figured out. I just have too many signatures and don't ever know which one I want to use. So now I'm trying to create a random sig generator
Trending Topics
The Best V8 Stories One Small Block at Time
EDIT: PHP would work also as long as the last server side parm ended in .jpg
Last edited by 2MuchRiceMakesMeSick; Aug 27, 2007 at 10:13 PM.
EDIT: PHP would work also as long as the last server side parm ended in .jpg
That's what I tried:
<?php
$base="www.ledvault.com/Brian/Sigs";
#construct the sig. pages Array
$pages=array("sig1.html","sig2.html","sig3.html","sig4.html");
$n=count($pages);
$num=rand(0, ($n-1));
$page=$pages[$num];
$url=$base.$page;
print "<embed src='$url'>";
?> I don't understand why because it only changes everytime the page is refreshed. Doesn't take a page any longer to load than it did before.
Oh well, I gave up
<?php
$base="www.ledvault.com/Brian/Sigs";
#construct the sig. pages Array
$pages=array("sig1.html","sig2.html","sig3.html","sig4.html");
$n=count($pages);
$num=rand(0, ($n-1));
$page=$pages[$num];
$url=$base.$page;
print "<embed src='$url'>";
?> No it has to be done on the server side... as in the server that is hosting the image
Why not change your output to something vBulletin can handle? Right now your output is html, you need to output something in img tags that vBulletin can parse.






