What's the chance of including an array to allow for multiple ad's being display in random? Prior to changes in vB3.0.x and 3.x.x, I used the following method: (called via an external .php file)
Code:
<?php
$banners = array('<a href="http://www.adone.com/" target="_blank"><img src="/banners/adone.gif"','
<a href="http://www.adtwo.com/" target="_blank"><img src="/banners/adtwo.gif"','
<a href="http://www.adthree.com" target="_blank"><img src="/banners/adthree.gif"','
<a href="http://www.adfour.com/" target="_blank"><img src="/banners/adfour.gif"');
shuffle($banners);
?>
<?php
for ( $i = 0; $i < 13; $i++ ) {
echo "<center>";
echo $banners[$i];
echo " border=\"0\" width=\"140\" height=\"100\"></a></center><br>";
}
?>
Please let me know your thoughts on such an addition.
Thanks!