Файл: DarkAge/news2.php
Строк: 16
<?
include_once"up.php";
$file = @file("data/news.dat");
$total=count($file);
$file = array_reverse($file);
if (empty($_GET['start'])) $start = 0;
else $start = $_GET['start'];
if ($total < $start + 5){ $end = $total; }
else {$end = $start + 5; }
for ($i = $start; $i < $end; $i++){
$udata = explode("||",$file[$i]);
echo '<div id="menu"><div id="line"><b>'.$udata[0].'</b></div> ['.$udata[1].']<br/><i>'.$udata[2].'</i><br/></div>';
}
if ($start != 0) {echo "<a href="news.php?start=".($start - 5)."&log=".$log."&pas=".$pas.""><- Назад</a> ";}
if ($total > $start + 5) {echo " <a href="news.php?start=".($start + 5)."&log=".$log."&pas=".$pas."">Далее -></a>";}
if (isset($web)){
echo '<a href="index.php?web"><b>Назад</b></a>';
}
if (isset($wap)){
echo '<a href="index.php?wap"><b>Назад</b></a>';
}
echo '<div id="foot"><b>© WanteD 2008-2009</b></div>';
list($msec,$sec)=explode(chr(32),microtime());
echo '[ '.round((($sec+$msec)-$gtime),4).' секунд ]';
echo '</body></html>';
?>