Log in

View Full Version : Banners..


Insane2
11-03-2001, 10:32 AM
I just started a small motorbike/car/speed related banner exchange and a couple of my users are running vbulletin 2.0.3. Now my question is, if they add the supplied code to the HTML header, in the VBulletin Admin CP, the page ID is not unique on each displayed page of the forum. Resulting in cached banners and missed credits. I was wondering is their a way to generate a random number in place of the page ID in the html header in admin CP??

I hope all that makes sense.

Thanks a ton in advance for any help you may be able to give.
Insane.

Scott MacVicar
11-03-2001, 10:47 AM
Within the styles part of the admin panel, tell them to add this code to the Header Insert of the appropriate style.

srand(time());
$pageid = rand();

then wherever the page id is meant to go place $pageid

hope this helps.

Insane2
11-03-2001, 02:14 PM
Thanks i passed on the info and was asked where to put the first bit :
srand(time());
$pageid = rand();

something about what part of styles?!? i think... :)

Edit: just got email... works a treat... THANKS HEAPS!! YOUR A CHAMPION :D

Mark Hensler
11-03-2001, 10:24 PM
if you need a really good seed for srand(), use:
srand((double) microtime() * 1000000);