Файл: Dvig/img/scan.php
Строк: 15
<?php
####################
## Автор - USER-X ##
## Copyright 2013 ##
## xcms.mcdir.ru ##
####################
define('xcms_pro', 1);
$path = '../';
$title='Информация портала';
include_once ($path . 'core/core.php');
include_once ($path . 'core/head.php');
#########
if($users['level'] == '5'){
$dir = 'gift/';
$time = time();
$files = ''.array_sum(array_map('is_file', glob(''.$dir.'*'))).'';
if($files > 0){
// Открыть заведомо существующий каталог и начать считывать его содержимое
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if($file == '.' or $file == '.htaccess' or $file == '..'){}else{
$rand = rand(5,20);
mysql_query("INSERT INTO `podar` SET `cost`='$rand', `img`='$file'");
print '<div class="menu">'.$file.' - Добавлен!';
echo'</div>';}
}
closedir($dh);
}
}
echo 'Добавлено - '.$files.' файлов';}else{echo'<div class="menu">Файлов в указаной директории нету.</div>';}
}else{echo'<div class="menu">Доступно только администраторам</div>';}
require_once 'system/foot.php';
?>