-
Notifications
You must be signed in to change notification settings - Fork 0
/
candidatos.php
94 lines (93 loc) · 3.27 KB
/
candidatos.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Vote Bem - Candidatos</title>
<link rel="icon" href="imgs/favicon.ico">
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<link rel="stylesheet" href="css/estilo.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<?php
$sql = "SELECT *,tb_partidos.nome AS nome_partido FROM tb_partidos,tb_candidatos WHERE tb_candidatos.id_partido=tb_partidos.id_partido";
include "PaginasProcessamento/conexao.php";
$vb = $banco -> prepare($sql);
$vb -> execute();
?>
<style>
.img{
padding-top:3%;
}
</style>
<body>
<main>
<?php include "PaginasProcessamento/nav.php"; ?>
<nav class="hide-on-small-only">
<div class="nav-wrapper blue espacamento-lateral">
<div class="col s12">
<a href="index.php" class="breadcrumb">Home</a>
<a href="index_cand_part.php" class="breadcrumb">Candidatos e Partidos</a>
<a href="candidatos.php" class="breadcrumb">Candidatos</a>
</div>
</div>
</nav>
<div class='container'>
<h1 class='center'>Candidatos</h1><br><br>
<?php
foreach($vb as $candidatos){
$id = $candidatos['id_candidato'];
$nome = $candidatos["nome"];
$num_candidato = $candidatos["numero_candidato"];
$cargo = $candidatos["cargo"];
$cidade = $candidatos["cidade"];
$estado = $candidatos["estado"];
$nascimento = $candidatos["data_nascimento"];
$partido = $candidatos["nome_partido"];
$foto = $candidatos["foto"];
echo "<div class='row'>
<div class='col s12 m6 center'>
<img width='200px' height='200px' class='img' src='imgs/candidatos/$foto'>
</div>
<div class='col s12 m6'><a name='pedro'></a>
<p><h5>Nome:$nome</h5></p>
<h5>Número:$num_candidato</h5>
<h5>Cargo:$cargo </h5>
<h5>Cidade:$cidade</h5>
<h5>Estado:$estado </h5>
<h5>Data de Nascimento:$nascimento</h5>
<h5>Partido:$partido</h5>
</div>
</div><hr>";
}
?>
</div>
<!-- FIM DOS BLOCOS -->
</main>
<footer class="page-footer blue">
<div class="container">
<div class="row">
<div class="col l6 s12">
<p><a href="index.php"><img src="imgs/footer-logo.png" alt="Logo do Vote bem"></a></p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Compartilhe</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="#!">Twitter</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Facebook</a></li>
<li><a class="grey-text text-lighten-3" href="#!">Instagram</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2017 Copyright - Todos os direitos reservados
</div>
</div>
</footer>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
</body>
</html>