-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu_logado.php
54 lines (41 loc) · 1.41 KB
/
menu_logado.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
<?php
ini_set('display_errors',1);
ini_set('display_startup_erros',1);
error_reporting(E_ALL);
include "config.php";
include "banco.php";
include "helper.php";
include "classes/Cadastros.php";
$cadastros = new Cadastros($mysqli);
$tem_erros = false;
$erros_validacao = array();
if (tem_post()) {
$cadastro = array();
$cadastro['id'] = $_SESSION['id'];
$cadastro_id = $_POST['cadastro_id'];
if (! isset($_FILES['arte'])) {
$tem_erros = false;
$erros_validacao['arte'] = 'You forgot to select a picture';
} else {
if (tratar_arte($_FILES['arte'])) {
if (isset($_POST['nome_arte']) && strlen($_POST['nome_arte']) >= 4) {
$arte = array();
$arte['cadastro_id'] = $cadastro_id;
$arte['nome'] = $_FILES['arte']['name'];
$arte['arquivo'] = $_FILES['arte']['name'];
$arte['nome_arte'] = $_POST['nome_arte'];
} else {
$tem_erros = true;
$erros_validacao['nome_arte'] = "Ops! Art's name must have 4 characters or more!";
}
} else {
$tem_erros = true;
$erros_validacao['arte'] = 'Send just pictures! And height must be > 200 pixels and width > 300 pixels';
}
}
if (! $tem_erros) {
gravar_arte($mysqli, $arte);
$sem_erros['arte'] = 'Sent!';
}
}
include "template_menulogado.php";