<?php
//
// Simple Ad Rotator
//
$adfile = file_get_contents(\'reklam.txt\');
$ads = array();
$ads = explode("||AD_DIVIDER||", $adfile);
$count = count($ads);
$rand = rand(0, $count-1);
echo $ads[$rand];
?>