-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
139 lines (129 loc) · 5.06 KB
/
index.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
require('conecxaoBD.php');
if (!isset($_SESSION)) {
session_start();
}
?>
<!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">
<title>Site Critica de Filme</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="menu">
<div id="logo">
<a href="index.php"><img src="img/pipoca.png" alt="Logo"></a>
</div>
<?php
if (!isset($_SESSION['id'])) {
?>
<nav>
<a href="entrar.php">Entrar</a>
<a href="cadastro.php">Cadastrar-se</a>
</nav>
<?php
} else {
?>
<nav>
<a><?php echo $_SESSION['nome'] ?></a>
<?php if($_SESSION['nome'] == 'admin'){
echo '<a href="cadastroFilme.php">Cadastrar filme</a>';
}
?>
<a id="sair" href="sair.php">Sair</a>
</nav>
<?php
}
?>
</div>
</header>
<main>
<section>
<?php if (!isset($_GET['id_filme'])) { ?>
<h1 style="text-align: center;
margin-top: 40px;">Críticas de Filmes</h1>
<div class="lista_filmes">
<?php
$filme = $database->query("SELECT id, titulo FROM filme;");
while ($linha = $filme->fetch()) {
?>
<form action="index.php" method="get">
<button class="link_filme" type="submit" name="id_filme" value="<?php echo $linha['id']; ?>">
<?php echo $linha['titulo']; ?>
</button>
</form>
<?php
}
?>
</div>
<?php
} else if (!isset($_SESSION['id'])) {
header("Location: entrar.php");
} else {
$id_filme = $_GET['id_filme'];
function getIdFilme($id_filme){
return $id_filme;
}
$info_filme = $database->query("SELECT * FROM filme WHERE id = '$id_filme';");
$comentario = $database->query("SELECT nome, comentario FROM filme f
INNER JOIN comentario c
on f.id = c.id_filme
INNER JOIN usuario u
on u.id = c.id_usuario
WHERE f.id = '$id_filme';");
$filme = $info_filme->fetch();
?>
<div class="container">
<h2 align="left"><?php echo $filme['titulo']; ?></h2>
<p>Ano de Lançamento:<?php echo $filme['ano']; ?></p>
<p>Sinopse: <?php echo $filme['sinopse']; ?></p>
<h4><b>Área de Comentário</b></h3>
<?php
while ($linha = $comentario->fetch()) {
?>
<div>
<b><?php echo $linha['nome']; ?></b>
<p>
<?php echo $linha['comentario']; ?>
</p>
</div>
<?php
}
?>
<br>
<div class="form-group">
<form action="" method="post">
<label for="comentario">Comentário</label>
<input type="text" name="comentario" placeholder="insira o comentário">
<button type="submit" class="btn btn-info">Enviar</button>
</form>
</div>
</div>
<?php
}
if (isset($_POST['comentario'])) {
if (strlen($_POST['comentario']) == 0) {
echo "Preencha sua comentário para envio!";
} else {
$stmt = $database->prepare('INSERT INTO comentario (id_filme, id_usuario, comentario) VALUES(:id_filme, :id_usuario, :comentario)');
$stmt->execute(array(
':id_filme' => $id_filme,
':id_usuario' => $_SESSION['id'],
':comentario' => $_POST['comentario']
));
header("Refresh: 0");
}
}
?>
</section>
</main>
<footer>
</footer>
</body>
</html>