-
Notifications
You must be signed in to change notification settings - Fork 0
/
addproduto.php
205 lines (174 loc) · 7.35 KB
/
addproduto.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
session_start();
if(isset($_SESSION["user"]) && is_array($_SESSION["user"])){
include("basedados/config.php");
$nivelsession = $_SESSION["user"][4];
$passwordsession = $_SESSION["user"][3];
$emailsession = $_SESSION["user"][2];
$namesession = $_SESSION["user"][1];
$idsession = $_SESSION["user"][0];
$sql = ("SELECT * FROM `loginregister`");
// executa a query
$result = mysqli_query($conn, $sql);
// transforma os dados em um array
$linha = mysqli_fetch_array($result);
// calcula quantos dados retornaram
$total = mysqli_num_rows($result);
}else{
echo "<script>window.location = 'login.php'</script>";
}
?>
<html>
<head>
<link rel="shortcut icon" href="img/lifestyleStore.png" />
<title>Dashboard - <?php echo $namesession; ?></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style type="text/css">
body{
padding-top:0px;
padding-bottom:50px;
margin-bottom: 20px;
text-align:center;
border: 0px solid black;
padding: 25px;
background: url('img/dashboard.jpg') center center no-repeat fixed;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.container {
width: 400px;
min-height: 400px;
background: #FFF;
border-radius: 10px;
box-shadow: 0 0 5px rgba(0,0,0,.3);
padding: 40px 30px;
}
.container .login-text{
color: #111;
font-weight: 500;
font-size: 1.1rem;
text-align: center;
margin-bottom: 20px;
display: block;
text-transform: capitalize;
}
.container .login-email .input-group {
width: 100%;
height: 50px;
margin-bottom: 25px;
}
.container .login-email .input-group input {
width: 100%;
height: 100%;
border: 2px solid #e7e7e7;
padding: 15px 20px;
font-size: 1.5rem;
border-radius: 30px;
background: transparent;
outline: none;
transition: .3s;
}
.container .login-email .input-group input:focus, .container .login-email .input-group input:valid {
border-color: #a29bfe;
}
.container .input-group .btn {
display: block;
width: 100%;
padding: 15px 20px;
text-align: center;
border: none;
background: #a29bfe;
outline: none;
border-radius: 30px;
font-size: 1.5rem;
color: #FFF;
cursor: pointer;
transition: .3s;
}
</style>
</head>
<body>
<?php
require 'dashboardnav.php';
?>
<!--
ADICIONAR
-->
<center>
<div class="container">
<p class="login-text" style="font-size: 2rem; font-weight: 800;">Adicionar Produto</p>
<form action="" method="POST" class="login-email" enctype="multipart/form-data">
<div class="input-group">
<input type="text" placeholder="Nome" name="name" value="" required>
</div>
<div class="input-group">
<input type="number" placeholder="Preco" name="preco" value="" required>
</div>
<div class="input-group">
<input type="number" placeholder="Categoria" name="categoria" value="" required>
</div>
<div>
<p class="login-text" style="font-size: 1.5rem; font-weight: 800;">Escolha imagem do Produto:</p>
<input type="file" name="fileToUpload" id="fileToUpload">
<br>
</div>
<div class="input-group">
<button name="submit" class="btn"> Adicionar</button>
</div>
</form>
</div>
</center>
</body>
<?php
include 'basedados/config.php';
// Verifique se o arquivo de imagem é uma imagem real ou uma imagem falsa
if(isset($_POST["submit"])) {
$name = $_POST['name'];
$preco = $_POST['preco'];
$categoria = $_POST['categoria'];
//especifica o diretório onde o arquivo será colocado
$target_dir = "imgprodutos/";
//especifica o caminho do arquivo a ser carregado
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
//ainda não foi usado (será usado mais tarde)
$uploadOk = 1;
//contém a extensão do arquivo (em letras minúsculas)
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
if(empty($target_dir) == false){
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
$uploadOk = 1;
$sql = "SELECT * FROM `categoria` WHERE id = $categoria";
$result = mysqli_query($conn, $sql);
if ($result->num_rows > 0) {
$sql = "INSERT INTO `produtos`(name,preco,categoria,srcimagem) VALUES('$name', '$preco', '$categoria', '$target_file')";
$result = mysqli_query($conn, $sql);
if ($result) {
echo "<script>alert('Produto Adicionado com Sucesso')</script>";
echo "<script>window.location = 'refresh.php'</script>";
}else{
echo "<script>alert('Woops! Algo está errado.')</script>";
echo "<script>window.location = 'refresh.php'</script>";
}
}else{
echo "<script>alert('Woops! Essa categoria não existe.')</script>";
echo "<script>window.location = 'refresh.php'</script>";
}
} else {
$uploadOk = 0;
echo "<script>alert('Woops! Você não adicionou imagem.')</script>";
}
}else{
echo "<script>alert('Woops! Você não adicionou imagem.')</script>";
}
}
?>
<br>
<?php
require 'footer.php';
?>
</html>