Rotating Banner in Invision?

XColl

New Member
Messages
1,054
Reaction score
2
Points
0
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.
 

dharmil

New Member
Messages
1,656
Reaction score
0
Points
0
PHP:
<?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]); 
  ?>
 
Top