-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.php
125 lines (83 loc) · 4.07 KB
/
dashboard.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
<?php
session_start();
ob_start();
include_once 'conexao.php';
if((!isset($_SESSION['id'])) AND (!isset($_SESSION['nome']))){
$_SESSION['msg'] = "<p style='color: #ff0000'>Faça o login para acessar a página!</p>";
header("Location: index.php");
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style-dash.css">
<link rel="shortcut icon" href="images/logo.ico" type="image/x-ico">
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<title>Health Tech</title>
</head>
<body>
<?php
$dados = filter_input_array(INPUT_POST, FILTER_DEFAULT);
//var_dump($dados);
?>
<h1>Bem vindo(a) <?php echo $_SESSION['nome']; ?>!</h1>
<div class="tabela">
<div class="box-model">
<form method="POST" action="">
<legend>CONSULTAR</legend>
<label>Prontuário</label>
<input class="input-padrao" type="text" name="num_prontuario" id="num_prontuario" placeholder="Digite o número do prontuário."required value="<?php if(isset($dados['num_prontuario'])) {echo $dados['num_prontuario'];}?>">
<input class="botao" type="submit" value="CONSULTAR" name="Consultar">
<a href="sair.php">SAIR</a>
</form>
</div>
<table class="dados">
<thead>
<tr>
<th>NOME</th>
<th>PRONTUÁRIO</th>
<th>MEDICAÇÕES</th>
<th>OBSERVAÇÕES</th>
</tr>
</thead>
<tbody>
<?php
$dados = filter_input_array(INPUT_POST, FILTER_DEFAULT);
//var_dump($dados);
if (!empty($dados['Consultar'])) {
$prontuario = $dados['num_prontuario'];
$query_prontuarios ="SELECT id_paciente, nome, prontuario, medicacao, observacoes FROM pacientes WHERE prontuario LIKE :prontuario LIMIT 1";
$result_prontuarios = $conn->prepare($query_prontuarios);
$result_prontuarios->bindParam(':prontuario', $prontuario, PDO::PARAM_STR);
$result_prontuarios->execute();
if ($row_prontuario = $result_prontuarios->fetch(PDO::FETCH_ASSOC)) {
//var_dump($row_prontuario);
echo "<tr>";
echo "<td>" . $row_prontuario['nome'] . "</td>";
echo "<td>" . $row_prontuario['prontuario'] . "</td>";
echo "<td>" . $row_prontuario['medicacao'] . "</td>";
echo "<td>" . $row_prontuario['observacoes'] . "</td>";
echo "</tr>";
}else {$_SESSION['msg'] = "<p style='color: #ff0000'>Prontuário não encontrado!</p>";
}
//} else {$_SESSION['msg'] = "<p style='color: #ff0000'>Digite um valor válido!</p>";
}
?>
</tbody>
</table>
</div>
<footer>
<h2 class="copyright">© Copyright Karina Tonzar - 2023</h2>
</footer>
</body>
</html>
<?php
if(isset($_SESSION['msg'])){
echo $_SESSION['msg'];
unset($_SESSION['msg']);
}
?>