|
|
ВАШ IP АДРЕС:
18.191.165.149
Человек на сайте
На сайте: 699 человек(а)
|
|
|
Ђдминистрация никак не связан с авторами и содержимым ссылок Рђеклама
|
|
|
|
|
Cервер : irc.comp-info.ru Порт : 6667 Канал : #comp-info
..:: ПРОГРАММИРОВАНИЕ ::..
Вывод список файлов из папки с размером, и ссылка на удаление их.
Index.php
<?php
include "config.php";
$emtry=true;
if (@$handle = opendir($folder_uploader)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..")
{
$size= substr(filesize($folder_uploader."/".$file), 0, -3);
echo "<b>($size Кб)</b> <a href='del.php?file=$file'>[delete]</a> <b>$file</b><hr>\n";
$emtry=false;
}
}
closedir($handle);
if ($emtry) echo "<center><h3>Папка пуста!</h3></center>";
}
else echo "Такой папки несуществует!";
?>
del.php
<meta http-equiv="refresh" content="0;URL=index.php">
<?
include "config.php";
$file="$folder_uploader/".$_GET['file'];
unlink($file);
?>
config.php
<?
$folder_uploader="files";
?>
|
[Downloads]
|
|
|
|
|
|
|
|
Для кодеров
|
|
|
|