-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
114 lines (101 loc) · 3.26 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
include_once 'sql.calss.php';
include_once 'files.class.php';
$db = new DB();
$file = new Files();
$list = $db->getFilesList();
if(isset($_GET['file']) && !empty($_GET['file'])){
$id = $_GET['file'];
if(is_numeric($id)){
$info = $file->getFile($id, $db);
}
}
?>
<html>
<head>
<meta charset="UTF-8">
<title>File Uploads</title>
<script src="js/jquery-1.12.2.min.js"></script>
<script src="js/app.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<div id="header">
<div id="slogan">
File Uploads
</div>
</div>
<div id="content">
<div id="buttons">
<div id="add_file">+</div>
</div>
<table>
<thead>
<tr>
<th>Название файла</th>
<th>Размер</th>
<th>Инфо</th>
<th>Дата добавления</th>
</tr>
</thead>
<tbody>
<? foreach($list as $f): ?>
<tr>
<td><a href="/?file=<?=$f['id']?>"><?=$f['originalName'];?></a></td>
<td><?=$f['fileSize'];?></td>
<td><?=$f['fileType'];?></td>
<td><?=$f['added'];?></td>
</tr>
<? endforeach; ?>
</tbody>
</table>
</div>
<div id="footer">
© Власов Максим 2016г.
</div>
</div>
<div id="popup">
<div id="close">x</div>
<div id="form_content">
<form id="form" enctype="multipart/form-data" method="POST" action="">
<p>
<label for="userfile">Файл: </label>
<input id="userfile" name="userfile" type="file">
</p>
<p>
<label for="comment">Комментарий: </label>
<input id="comment" name="comment" type="text">
</p>
<p>
<label for="description">Описание: </label>
<textarea id="description" name="description"></textarea>
</p>
<p><input type="submit" name="submit" value="Загрузить"></p>
</form>
</div>
</div>
</body>
</html>
<?php
// Форма пришла
if(isset($_POST['submit'])){
$data = null;
// Получаем данные
$comment = htmlspecialchars($_POST['comment']);
$description = htmlspecialchars($_POST['description']);
//Если файл успешно сохранен
if(false != ($data = $file->saveFile())){
$data['comment'] = $comment;
$data['description'] = $description;
//Если произошла запись в БД
if(false != ($id = $db->saveFileData($data))){
// "Перезагрузка" страницы для предотвращения повторной загрузки файла.
echo "<script>window.location = 'http://{$_SERVER['HTTP_HOST']}';</script>";
}else{
//выводим alert с ошибкой
echo '<script> alert("Произошла ошибка при сохранении файла"); </script>';
}
}
}
?>