-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
42 lines (37 loc) · 1.42 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
<?php
// Подключаем файл config.php, в котором описываем путь к большим фотографиям и к маленьким
include_once 'models/config.php';
// Подключаем файл photo.php
include_once 'models/photo.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Работа с файлами</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>ГАЛЕРЕЯ ФОТО</h1>
</header>
<div class="images">
<?php
// Пробегаем по массиву $images и на каждой итерации подставляем в ссылку параметр photo равный загруженным фото
for ($i=0; $i < count($images); $i++) : ?>
<a href="image.php?photo=<?=$images[$i] ?>">
<img src="<?=PHOTO_SMALL.$images[$i] ?>">
</a>
<?php endfor; ?>
</div>
<div class="add_foto">
<form action="" method="POST" enctype="multipart/form-data">
<span> <b>Добавить файл: </b> </span>
<input type="file" name="userfile">
<button type="submit" name="send">ЗАГРУЗИТЬ</button> <br>
<!--Здесь надо было бы проверить задана ли переменная $message и выводить ее если задана-->
<span><?=$message?></span>
</form>
</div>
</body>
</html>