Размер файла: 657B
<?php
include_once ('functions.php'); // берём функции из Wap-Motor 19-20
error_reporting(0); // выключаем ошибки
//---------------------------------------------------------------//
$file = file(DATADIR."/victorina.dat");
$file = array_reverse($file);
$total = count($file);
if ($total>0){
if ($start < 0 || $start >= $total){$start = 0;}
if ($total < $start + $config['chatpost']){ $end = $total; }
else {$end = $start + $config['chatpost']; }
for ($i = $start; $i < $end; $i++){
$data = explode("|",$file[$i]);
}
echo' (<b>'.$total.'</b>)<br>';
}else{ echo'(0)<br>'; }
?>