I'm wondering how I can have a rotating banner in Invision Powered Board 2.0.0 final? Apperciated if you can provide a code.
I'm wondering how I can have a rotating banner in Invision Powered Board 2.0.0 final? Apperciated if you can provide a code.
Have you checked Invisionize?
I run default designs and i remember someone posting a tutorial for a rotating sig. it can be found in teh tutorial section of the forum. i think his name was saint-michael
check it out here: http://defaultdesigns.us.to/index.php?showforum=19
==/EDIT\==
found the exact link: http://defaultdesigns.us.to/index.php?showtopic=45
PHP Code:<?php
// ARRAY THE IMAGES
$random_image = array("",
"<a href='link'><img src='imagelink'></a>",
"<a href='link'><img src='imagelink'></a>",
"<a href='link'><img src='imagelink'></a>");
// SET THE TIME TO SWITCH THE IMAGES
srand ((double) microtime() * 1000000);
// 1,3 1 is the images to display at one time and th second number thats how manny images you put in the array
$rnd = rand(1,3);
// This Displays the Images
echo ($random_image[$rnd]);
?>
- Dharmil