View file index.php

File size: 1.85Kb
<?
include('head.php'); include('fun.php'); include('config.php');
if(empty($_GET['dir'])){ $_GET['dir']=$pathdir;  } $back='<a href=index.php?dir='.dirname($_GET['dir']).'>Вверх</a>';  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'],"/"); 
echo '<div class=res>'.$ap.'<br>'.$back.'</div><br>';
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><input name=cat size=18 value="'.htmlspecialchars($_GET['dir']).'" onBlur="top.location.href=\'index.php?dir=\'+this.value"><br>';
 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><a href=mysql.php>Управление MySQL</a><br><br>Сделано doulin.ru';
include('foot.php');
?>