forked from AdelinedeNazare/MaisHistoria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
artigomostrar.php
62 lines (58 loc) · 1.92 KB
/
artigomostrar.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
<?php
include_once 'connection.php';
?>
<!DOCTYPE html>
<html lang="pt-br">
<body>
<header>
<?php
include_once 'login.php';
include_once 'menu.php';
?>
</header>
<div class="container conteudo">
<?php
include_once 'carrosel.php';
?>
<div class="row destaque">
<h2 style="color:#005858;">Artigo:</h2>
<hr>
</div>
<?php
$idArtigo = $_GET['id'];
$query = "SELECT * FROM tb_artigos
JOIN tb_assunto
ON tb_artigos.tb_assunto_idassunto = tb_assunto.idassunto
WHERE id_artigos = $idArtigo";
$artigo = $conn->query($query);
if ($artigo->num_rows >0 ) {
$resultado = $artigo->fetch_assoc();
$idProfessor = $resultado['professor_idprofessor'];
$queryProfessor = "SELECT * FROM professor WHERE idprofessor = $idProfessor";
$professor = $conn->query($queryProfessor)->fetch_assoc();
}
else {
header("Location: http://localhost/error.php");
die();
}
?>
<h3 align="middle"> <b><?php echo $resultado['nome']; ?></b></h3>
<br />
<br />
<br />
<?php echo $resultado['documento']; ?>
<h4 style="color:#005858;"> Por: <?= $professor['nome']; ?></h4>
<h4 style="color:#005858;"> Autor(a) do artigo: <?php echo $resultado['autor_artigo']; ?></h4>
<br />
<a href='artigo.php' style="text-align: center; font-size: 25px; display: inline-block; width: 100%">
Volte a página anterior...
</a>
</div>
<br>
<br>
<?php
include_once 'pluggin.php';
include_once 'footer.php';
?>
</body>
</html>