|
while(count($adarray) < 5) {
$adnum=rand(1,15);
array_push($adarray, $adnum);
array_unique($adarray);
} return $adarray;
This would be called at the very top of each page
Then you would call each ad by the following..
<?php include 'ad' . $adarray[0] . '.php' ?>
<?php include 'ad' . $adarray[1] . '.php' ?>
etc..
I haven't tested this or the logic but it seems ok.
|