-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharquivos_cad.php
149 lines (146 loc) · 4.4 KB
/
arquivos_cad.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?
include('usuario.php');
if(!$_SESSION['usertype']==1){
$area="all";
} else {
$area=$_SESSION['area'];
}
include("classes/arquivo.class.php");
error_reporting(E_ALL);
//define os tipos permitidos
$tipos[0]=".pdf";
$tipos[1]=".xls";
$tipos[2]=".doc";
$tipos[3]=".docx";
$tipos[4]=".xlsx";
//define o tamanho máximo permitido
$max_size=1000000; // em bytes
if(isset($_FILES['userfile']))
{
$area=isset($_POST['area']) ? $_POST['area'] : null;
$descricao=isset($_POST['descricao']) ? mysql_escape_string($_POST['descricao']) : null;
$upArquivo = new Arquivo();
if($upArquivo->UploadArquivo($_FILES['userfile'], "arquivos/area_".$area."/", $tipos, $area, $descricao))
{
$area = $upArquivo->area;
$descricao = $upArquivo->descricao;
$nome = $upArquivo->nome;
$pasta = $upArquivo->pasta;
$tipo = $upArquivo->tipo;
$tamanho = $upArquivo->tamanho;
}
} else {
$area = null;
$nome = null;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Bussola Seguros ::: O seguro na medida da sua necessidade</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel=StyleSheet href="lib/css/style.css" type="text/css" />
</head>
<body>
<div class="main">
<div class="header">
<div class="block_header">
<div class="RSS"></div>
<div class="clr"></div>
<div class="logo"><a href="index.php"><img src="images/logo.gif" width="422" height="142" border="0" alt="logo" /></a></div>
<div class="menu">
<ul>
<li><a href="index.php"><span class="bgi">Home</span></a></li>
<li><a href="empresa.html"><span class="bgi">Empresa</span></a></li>
<li><a href="seguros.html"><span class="bgi">Seguros</span></a></li>
<li><a href="#"><span class="bgi">Sinistro</span></a></li>
<li><a href="contato.html"><span class="bgi">Contato</span></a></li>
</ul>
</div>
<div class="clr"></div>
</div>
</div>
<div class="clr"></div>
<div class="tip">
<div class="Menu_resize">
</div>
</div>
<div class="body">
<div class="body_resize">
<div class="left_size">
<p align="left"><?
if(strlen($_SESSION['message'])>0){
?>
<div><? echo $_SESSION['message']; unset($_SESSION['message']); ?></div>
<? } ?>
<table>
<tr>
<td class="campo">Nome da Área ao qual o Arquivo foi Enviado:</td><td><?php echo $area ?></td>
</tr>
<tr>
<td class="campo">Nome do Arquivo Enviado:</td><td><?php echo $nome ?></td>
</tr>
<tr>
<td class="campo">Tipo do Arquivo Enviado:</td><td><?php echo $tipo ?></td>
</tr>
<tr>
<td class="campo">Tamanho do Arquivo Enviado:</td><td><?php echo $tamanho ?></td>
</tr>
</table>
<br/>
<form action="arquivos_cad.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="<? echo $max_size; ?>">
<table class="table_cad">
<tr>
<td colspan="2" align="center" class="titulo">Enviar arquivo</td>
</tr>
<tr>
<td class="campo">Arquivo:</td>
<td><input type="file" name="userfile" /></td>
</tr>
<tr>
<td class="campo">Descrição:</td>
<td><textarea name="descricao"></textarea></td>
</tr>
<tr>
<td class="campo">Área:</td>
<td><?
include('classes/area.class.php');
$arr=new Area();
echo $arr->comboArea($area, true);
?></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Enviar Arquivo" class="botao" /></td>
</tr>
</table>
</form>
<p> </p>
</div>
<div class="Serv">
<h2>Nota</h2>
<p>Ao enviar novo arquivo, é <strong>importante</strong>:</p>
<ul>
<li>Definir sua área de Permissão</li>
<li>Confirmar a área de Permissão</li>
<li>Descrição de forma resumida</li>
<li>Usar formato .PDF ou .XLS</li>
</ul>
</div>
<div class="Serv">
</div>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
</div>
<div class="footer">
<div class="resize">
<p class="footer_logo"> </p>
<div>© Copyright bussolaseguros.com.br | made by <a href="http://iguanabr.com.br/" target="_blank">iguanaBR</a></div>
</div>
<p class="clr"></p>
</div>
</body>
</html>