-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrel_estoque.php
77 lines (75 loc) · 2.31 KB
/
rel_estoque.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
<?php
session_start ();
$env = parse_ini_file('.env');
$senha_db = $env["SENHA_DB"];
?>
<!DOCTYPE html>
<html>
<head>
<title>Tever Store</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/menu.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Outfit">
<style> #principal {font-family: 'Outfit', serif;} </style>
</head>
<body>
<div id="principal">
<div class="header">
<h1>Tever Store</h1>
</div>
<hr>
<div class="menu_global">
<p align="center"> Olá, <?php include "valida_login.php"; ?>!</p>
<?php include "menu_local.php"; ?>
</div>
<div class="middle-list">
<h1 style="font-size: 40px;">RELATÓRIO DE ESTOQUE</h1>
<?php
$conectar = mysqli_connect("localhost", "root", $senha_db, "tever");
$sql_consulta = "SELECT marca_tel, modelo_tel, preco_tel,
fila_compra_tel, cod_tel FROM televisores WHERE fila_compra_tel = 'N'";
$sql_resultado = mysqli_query ($conectar, $sql_consulta);
?>
<table width="100%">
<tr height="50px">
<td><strong>MARCA</strong></td>
<td><strong>MODELO</strong></td>
<td><strong>PREÇO</strong></td>
<td><strong>NA FILA</strong></td>
</tr>
<?php
while ($registro = mysqli_fetch_row($sql_resultado)) {
?>
<tr height="50px">
<td>
<a href="exibe_tel.php?cod_tel=<?php echo $registro[4]; ?>">
<?php echo $registro[0]; ?>
</a>
</td>
<td>
<?php echo $registro[1]; ?>
</td>
<td>
R$<?php echo $registro[2]; ?>
</td>
<td>
<?php echo $registro[3]; ?>
</td>
</tr>
<?php
}
?>
</table>
<p><a href="relatorios.php">Voltar</a></p>
</div>
<hr>
<footer>
<p>QS 07 lote 02/08 | E-mail: [email protected] | Fone: (61) 98000-1000</p>
<p>© 2024 Tever Store</p>
</footer>
</div>
</body>
</html>