View file arhiv.php

File size: 815B
<?
include'head.php';

error_reporting(0);
include'conf.php';
$nom=$_GET['nom'];
function countfiles($dir){$d=opendir($dir);
$c=0;
while($str=readdir($d)){
if($str{0}!='.'){
if(is_dir($dir.$str)) $c+=countfiles($dir.$str.'/'); else $c++;
} } return (int)$c;
}
$f=countfiles('komments/data/'.$nom.'');
if ($nom =='')
{ echo'<div class="f1">Новостей пока нет</div>'; }
$file=@file("zap/$nom.dat");

$file=array_reverse($file);
for($i=0;$i<1;$i++){
$string=explode(":::::",$file[$i]);
$nom=$_GET['nom'];
echo"$string[0]<div class='f1'>$string[1]<br>$string[2]</div><br><a href='komments/index.php?kom=".$nom."''>Комментарии: </a>[$f]<br/><a href='arh.php'>Архив новостей</a><br/><a href='../'>На главную</a><br/></div>"; }
include"foot.php";
?>