-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
40 lines (39 loc) · 1.07 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
<?php
require_once 'controller/Diretorio.php';
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>webFtp</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="app">
<h1>WebFTP</h1>
<form enctype="multipart/form-data" action="index.php" method="POST">
Selecione o arquivo: <input type="file" accept="image/*"git name="btnFile"/></br>
<input type="submit" value="Enviar arquivo" name="btnSubmit" disabled/>
</form>
<div class="files">
<?php
$diretorio = new Diretorio('uploads/');
$botao = filter_input(INPUT_POST, "btnSubmit");
if ($botao) {
$arquivo = $_FILES['btnFile'];
$diretorio = new Diretorio('uploads/');
echo '</br>';
$diretorio->enviarArquivo($arquivo);
echo '</br>';
echo '</br>';
echo '</br>';
}
$diretorio->listararquivos();
?>
</div>
</div>
<script src="./js/app.js"></script>
</body>
</html>