I guess I could just go with something such as
Code:
<?php
$fcontents = join ('', file ('ads.txt'));
$s_con = split("@",$fcontents);
$banner_no = rand(0,(count($s_con)-1));
echo $s_con[$banner_no];
?>
but I'd rather be lazy with a simple interface lol.