hey,
i know this post has been here quite a bit... but,
i have a couple sigs that i really like an i wanna display them randomly at various forums.... like for my avs adn sigs.... how do you do that??? is there some way to implement PHP code in pics??? that sounds really stupid, but how the hell do you do it?
-brian
random siggies
Moderator: General Moderators
I set up a script that lets a user choose the signatures and avatars so they can mix and match and the forum will automatically change the signature and avatar pictures (in a way...)
Here's the script: http://www.disturbedfrenzy.com/scripts/selector/
Example (view): http://www.eyesondesign.net/board/index ... e_Anderson
It works by showing the signatures, the user selects which one they want, and it copies the image the user chose to a new signature.jpg and the forum shows signature.jpg. So the forum code doesn't have to change, just the image it's linked to... does that make sense?
I hope this gives another option for viewing sigs in forums.
If you're still looking for random sigs, you can check out http://www.microcyb.com/?m=c&c=79 and use the same idea they used to create random image urls.
One of the problems with this is you have to show a .php file in your signature area on forums 
Here's the script: http://www.disturbedfrenzy.com/scripts/selector/
Example (view): http://www.eyesondesign.net/board/index ... e_Anderson
It works by showing the signatures, the user selects which one they want, and it copies the image the user chose to a new signature.jpg and the forum shows signature.jpg. So the forum code doesn't have to change, just the image it's linked to... does that make sense?
I hope this gives another option for viewing sigs in forums.
If you're still looking for random sigs, you can check out http://www.microcyb.com/?m=c&c=79 and use the same idea they used to create random image urls.
Code: Select all
<?php
$quote = array(
1 => "<img src='image1.jpg'>",
2 => "<img src='image2.jpg'>",
3 => "<img src='image3.jpg'>",
4 => "<img src='image4.jpg'>",
5 => "<img src='image5.jpg'>",
);
srand ((double) microtime() * 1000000);
$randnum = rand(1,5);
echo"$quote[$randnum]";
?>http://www.devnetwork.net/forums/images ... mages.phps
Stick that in directory with images/
Than point to something like this:
http://www.devnetwork.net/forums/images ... hp/sig.jpg
Stick that in directory with images/
Than point to something like this:
http://www.devnetwork.net/forums/images ... hp/sig.jpg
i got a random image generator at my site, if you don't want to code yourself...
register, login and click on RRLS
http://www.vigge.net
for more info on what it is, click the (?) on the RRLS page...
register, login and click on RRLS
http://www.vigge.net
for more info on what it is, click the (?) on the RRLS page...
Pimptastic wrote:http://www.devnetwork.net/forums/images ... mages.phps
Stick that in directory with images/
Than point to something like this:
http://www.devnetwork.net/forums/images ... hp/sig.jpg
does this stil work, im having issues using this for avatars on boards