Файл: public_html/mysait/index.php
Строк: 29
<?
session_start();
include("../sistem/global.dat");
include("../sistem/cfg.dat");
include('head.php'); include('fun.php'); include('config.php');
if(empty($_GET['dir'])) { $_GET['dir']=$pathdir; } if(!is_dir($_GET['dir'])){ echo 'Такова сайта не существует<br>'; exit; } $open=opendir($_GET['dir']); while($read=readdir($open))
{ $array[]=$read;}
$count=count($array)-2;
$ap=stristr($_GET['dir'],"/");
sort($array); echo '<div class=res>';
if($count<1){ echo 'Папка пустая<br>'; }
$countdir=0; $countfile=0;
for($i=0;$i<count($array);$i++){
if($array[$i]!="." and $array[$i]!=".."){
if(is_dir(''.$_GET['dir'].'/'.$array[$i].'')){ echo '<a href=viewdir.php?dir='.$_GET['dir'].'/'.$array[$i].'><img src=image/f.gif></a><a href=index.php?dir='.$_GET['dir'].'/'.$array[$i].'>'.$array[$i].'</a><br>'; $countdir++; }
if(is_file(''.$_GET['dir'].'/'.$array[$i].'')){ echo '<a href=viewfile.php?path='.$_GET['dir'].'/'.$array[$i].'>'.$array[$i].'</a> ('.size(filesize("".$_GET['dir']."/$array[$i]")).')<br>'; $countfile++; }
}
}
echo '</div>Папок: '.$countdir.'<br>Файлов: '.$countfile.'<br>';
echo '<br><div class=reg>Меню</div>';
echo '<br><a href=multi.php?dir='.$_GET['dir'].'>Мульти выбор</a><br><a href=newdir.php?dir='.$_GET['dir'].'>Создать папку</a><br><a href=newfile.php?dir='.$_GET['dir'].'>Создать файл</a><br><a href=down.php?act=upload&dir='.$_GET['dir'].'>Upload файлов</a><br>
<a href=down.php?act=import&dir='.$_GET['dir'].'>Импорт файлов</a><br>';
include('foot.php');
?>