Просмотр файла lj/topj.php

Размер файла: 2.54Kb
<?php
require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
require_once"../template/antidos.php";
require_once"../template/cookies.php";
require_once"../template/gzip.php";
require_once"../template/header.php";
require_once"../template/referer.php";
include_once"../themes/$config_themes/index.php";
include_once"../template/isset.php";

require_once"../template/ljfun.php";

if(!empty($start2)){$start=round(($start2-1)*10);}

echo '<div class="a"><b>Рейтинг Журналистов!</b></div>';



$dir = opendir ("../local/lj"); // открываем текущую директорию
while ($file = readdir ($dir)) 
{if (( $file != ".") && ($file != "..") && ($file != ".htaccess") && ($file != "index.php")) // эти файлы игнорируем
{$a[]=$file;}}  // записываем все что есть в массив
closedir ($dir); //Закрываем 
	
$total = count($a);  //считаем 

for ($i = 0; $i < $total; $i++){
$tex = @file("../local/lj/$a[$i]");
$data = explode(":||:",$tex[0]);


$dat_max[]=$data[0];
$dat_log[]=$data[1];
$dat_date[]=$data[2];

}



arsort($dat_max);


foreach($dat_max as $k=>$v)
{$uz=$dat_log[$k];	$postsall=$v;

$mesto++;

$dat_max2[]='</div>
<div class="a"><b>
&#149; <b>'.$mesto.'.</b> <a href="/pages/anketa.php?uz='.$dat_log[$k].'&amp;'.SID.'">'.$dat_log[$k].'</a></b><br />

Написано статей: '.$v.'<br />
Последняя запись: '.$dat_date[$k].'</div>';

}
	
if ($start=="") {$start = 0;}
if ($total < $start + 10){ $end = $total; }
else {$end = $start + 10; }
for ($i = $start; $i < $end; $i++){

echo $dat_max2[$i];
}
echo '<div class="a">';
if ($start != 0) {echo '<hr><a href="topj.php?start='.($start - 10).'&amp;'.SID.'">Назад |</a> ';}else{echo'<hr>';}
if ($total > $start + 10) {echo ' <a href="topj.php?start='.($start + 10).'&amp;'.SID.'"> Далее</a>';} 


$nn=round(($start/10)+2);
$nn2=round(($start/10)+1);



  echo'Текущая страница: '.$nn2.'<br>';

//////////////////////////////////////////////////////////////////
echo '</div><div class="a">';	

echo 'Всего журналистов: '.$total.'<br>';
	$stri=ceil($total/10);

echo 'Всего страниц: '.$stri.'</div>
<li> <a href="index.php?'.SID.'">B журнал</a></li>
';
echo '<li> <a href="../index.php?'.SID.'">На главную</a></li>';


include_once"../themes/$config_themes/foot.php";
?>