-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarregaGenero.php
48 lines (31 loc) · 934 Bytes
/
carregaGenero.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
<?php
include_once "conexao.php";
include_once "Usuario.php";
if(!isset($_SESSION)) session_start();
$conexao = conexao::getConexao();
if(!isset($_SESSION["usuario"])){
header("location: index.php");
}
$dados = $_SESSION["usuario"];
$nivelAcesso = $dados->getNivelAcesso();
if($nivelAcesso != "A"){
header("location: index.php");
}
//Código acima - verificação de login
if(isset($_POST["min"])){
$conexao = conexao::getConexao();
$min = addslashes($_POST["min"]);
$comando = $conexao->prepare("SELECT * FROM genero ORDER BY nome_genero LIMIT $min, 10");
$comando->execute();
$dados = $comando->fetchAll();
$html = null;
foreach($dados as $value) {
$codigo = htmlspecialchars($value[0]);
$nome = htmlspecialchars($value[1]);
$html .= "<tr ondblclick='selecionaGenero($codigo, `$nome`)'><td>$nome</td></tr>";
}
echo $html;
}else{
header("location: cadLivros.php");
}
?>