Quote:
Originally Posted by Lycanthrope
ad.php:
<?php
$ads = file('ads.txt');
echo $ads[array_rand($ads)];
?>
ads.txt would contain your iframe / banner html. One entry per line, no blank lines.
ie:
<iframe src="http://www.domain.com/iframe_1.html"...></iframe>
<iframe src="http://www.domain.com/iframe_2.html"...></iframe>
etc.
Then just include it <?php include("ad.php"); ?> where you want it.
|
ahh, sweet, it's that simple huh?
How often would it show each banner? An equal amount of times? Is there a simple way to assign % show weights to each?