-
Notifications
You must be signed in to change notification settings - Fork 0
/
tarefa.php
48 lines (30 loc) · 965 Bytes
/
tarefa.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
<?php
include "config.php";
include "banco.php";
include "ajudantes.php";
$tem_erros = false;
$erros_validacao = array();
if (tem_post()) {
// upload dos anexos
$tarefa_id = $_POST['tarefa_id'];
if (!isset($_FILES['anexo'])) {
$tem_erros = true;
$erros_validacao['anexo'] = 'Você deve selecionar um arquivo para anexar';
} else {
if (tratar_anexo($_FILES['anexo'])) {
$anexo = array();
$anexo['tarefa_id'] = $tarefa_id;
$anexo['nome'] = $_FILES['anexo']['name'];
$anexo['arquivo'] = $_FILES['anexo']['name'];
} else {
$tem_erros = true;
$erros_validacao['anexo'] = 'Envie apenas nexos nos formatos zip ou pdf';
}
}
if (!$tem_erros) {
gravar_anexo($conexao, $anexo);
}
}
$tarefa = buscar_tarefa($conexao, $_GET['id']);
$anexos = buscar_anexos($conexao, $_GET['id']);
include "template_tarefa.php";