-
Notifications
You must be signed in to change notification settings - Fork 0
/
votacao.php
62 lines (55 loc) · 2.05 KB
/
votacao.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Votação</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php
require 'config.php';
$lista = [];
$sql = $pdo->query("SELECT * FROM `cadastro-chapas`");
if ($sql->rowCount() > 0) {
$lista = $sql->fetchAll(PDO::FETCH_ASSOC);
}
?>
<h1>Votação</h1>
<form action="votacao.php" method="post">
<label for="matricula">Matrícula do aluno</label>
<input type="number" name="matricula" min="0" required>
<fieldset>
<legend>Escolher Chapa</legend>
<?php foreach($lista as $id => $chapa): ?>
<input type="radio" name="chapa" value="<?= $chapa['nome_chapa'] ?>" id="<?= $id ?>" required>
<label for="<?= $id ?>">
<strong>Chapa:</strong> <?= $chapa['nome_chapa'] ?> |
<strong>Líder:</strong> <?= $chapa['nome_lider'] ?> |
<strong>Vice-líder:</strong> <?= $chapa['nome_vice'] ?>
</label>
<br><br>
<?php endforeach; ?>
</fieldset>
<button type="submit">Votar</button>
</form>
<a href="consulta.php">Consultar Chapas</a>
<a href="relatorio.php">Ver Relatório da Votação</a>
<?php
$matricula = filter_input(INPUT_POST, 'matricula');
$voto = filter_input(INPUT_POST, 'chapa');
if (!empty($voto)) {
$sql = $pdo->prepare("SELECT * FROM votos WHERE matricula_aluno = :matricula");
$sql->bindValue(':matricula', $matricula);
$sql->execute();
if ($sql->rowCount() === 0) {
$sql = $pdo->prepare("INSERT INTO votos (matricula_aluno, voto) VALUES (:matricula, :voto)");
$sql->bindValue(':matricula', $matricula);
$sql->bindValue(':voto', $voto);
$sql->execute();
}
}
exit;
?>
</body>
</html>