Просмотр файла template/reklama.php

Размер файла: 370B
<?php

if (!defined("BASEDIR")) { header("Location:../index.php"); exit; }

$filereklama = file(BASEDIR."local/reklama.dat"); 

if($filereklama){

$reklama_rand = array_rand($filereklama);

$str_reklama = explode("|",$filereklama[$reklama_rand]);	

echo '<img src="../images/img/reklama.gif" alt=""/> <b><a href="'.$str_reklama[1].'">'.$str_reklama[2].'</a></b>';

}

?>