Размер файла: 4.65Kb
<?php require_once('header.php'); ?>
<?php
if(isset($_POST['form1'])) {
$valid = 1;
if(empty($_POST['file_title'])) {
$valid = 0;
$error_message .= "Название файла не может быть пустым<br />";
}
$path = $_FILES['file']['name'];
$path_tmp = $_FILES['file']['tmp_name'];
if($path != '') {
$ext = pathinfo( $path, PATHINFO_EXTENSION );
$file_name = basename( $path, '.' . $ext );
if( $ext!='jpg' && $ext!='png' && $ext!='jpeg' && $ext!='gif' && $ext!='pdf' && $ext!='doc' && $ext!='docx' && $ext!='ppt' && $ext!='pptx' && $ext!='xls' && $ext!='xlsx' && $ext!='zip' && $ext!='rar' ) {
$valid = 0;
$error_message .= 'Разрешены только эти типы файлов: jpg, jpeg, gif, png, pdf, doc, docx, ppt, pptx, xls, xlsx, zip, rar<br />';
}
}
if($valid == 1) {
if($path == '') {
// updating into the database
$statement = $pdo->prepare("UPDATE nrd_file SET file_title=? WHERE file_id=?");
$statement->execute(array($_POST['file_title'],$_REQUEST['id']));
} else {
unlink('../assets/uploads/'.$_POST['previous_file']);
$final_name = 'file-'.$_REQUEST['id'].'.'.$ext;
move_uploaded_file( $path_tmp, '../assets/uploads/'.$final_name );
// updating into the database
$statement = $pdo->prepare("UPDATE nrd_file SET file_title=?, file_name=? WHERE file_id=?");
$statement->execute(array($_POST['file_name'],$final_name,$_REQUEST['id']));
}
$success_message = 'Файл успешно обновлен.';
}
}
?>
<?php
if(!isset($_REQUEST['id'])) {
header('location: logout.php');
exit;
} else {
// Check the id is valid or not
$statement = $pdo->prepare("SELECT * FROM nrd_file WHERE file_id=?");
$statement->execute(array($_REQUEST['id']));
$total = $statement->rowCount();
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
if( $total == 0 ) {
header('location: logout.php');
exit;
}
}
?>
<section class="content-header">
<div class="content-header-left">
<h1>Изменение файла</h1>
</div>
<div class="content-header-right">
<a href="file.php" class="btn btn-primary btn-sm">Все файлы</a>
</div>
</section>
<?php
foreach ($result as $row) {
$file_title = $row['file_title'];
$file_name = $row['file_name'];
}
?>
<section class="content">
<div class="row">
<div class="col-md-12">
<?php if($error_message): ?>
<div class="callout callout-danger">
<p>
<?php echo $error_message; ?>
</p>
</div>
<?php endif; ?>
<?php if($success_message): ?>
<div class="callout callout-success">
<p><?php echo $success_message; ?></p>
</div>
<?php endif; ?>
<form class="form-horizontal" action="" method="post" enctype="multipart/form-data">
<div class="box box-info">
<div class="box-body">
<div class="form-group">
<label for="" class="col-sm-2 control-label">Название <span>*</span></label>
<div class="col-sm-4">
<input type="text" class="form-control" name="file_title" value="<?php echo $file_title; ?>">
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label">Текущий файл</label>
<div class="col-sm-6" style="padding-top:6px;">
<?php
$fn = explode('.',$file_name);
if($fn[1] == 'jpg' || $fn[1] == 'jpeg' || $fn[1] == 'png' || $fn[1] == 'gif') {
?>
<img src="../assets/uploads/<?php echo $file_name; ?>" class="existing-photo" style="width:300px;">
<?php
} else {
echo $row['file_name'];
}
?>
<input type="hidden" name="previous_file" value="<?php echo $file_name; ?>">
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label">Загрузить новый файл <span>*</span></label>
<div class="col-sm-4" style="padding-top:6px;">
<input type="file" name="file">
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label"></label>
<div class="col-sm-6">
<button type="submit" class="btn btn-success pull-left" name="form1">Загрузить</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</section>
<?php require_once('footer.php'); ?>