-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarregaUsuarioAviso.php
84 lines (56 loc) · 1.89 KB
/
carregaUsuarioAviso.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
<?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");
}
$dadosUsuario = $_SESSION["usuario"];
$nivelAcesso = $dadosUsuario->getNivelAcesso();
if($nivelAcesso != "A"){
header("location: index.php");
}
if(isset($_POST["cod"]) && isset($_POST["type"])){
try{
$cod = trim(addslashes($_POST["cod"]));
$tipo = trim(addslashes($_POST["type"]));
$dadoMsg = null;
if($tipo == "A"){
$comando = $conexao->prepare("SELECT nome, sobrenome, img_aluno FROM aluno WHERE id_usuario_aluno = :id LIMIT 1");
$comando->bindParam(":id", $cod);
$comando->execute();
$dadoMsg = $comando->fetchAll();
}else if($tipo == "P"){
$comando = $conexao->prepare("SELECT nome, sobrenome, img_professor FROM professor WHERE id_usuario_professor = :id LIMIT 1");
$comando->bindParam(":id", $cod);
$comando->execute();
$dadoMsg = $comando->fetchAll();
}else{
$comando = $conexao->prepare("SELECT nome, sobrenome, img_funcionario FROM funcionario WHERE id_usuario_funcionario = :id LIMIT 1");
$comando->bindParam(":id", $cod);
$comando->execute();
$dadoMsg = $comando->fetchAll();
}
$html = null;
if(count($dadoMsg) > 0){
//Alterando situação da mensagem, para visulizado
$comando = $conexao->prepare("UPDATE avisos SET situacao = 'V' WHERE id_aviso = :idM LIMIT 1");
$comando->bindParam(":idM", $codM);
$comando->execute();
//Exibindo-a
$nome = htmlspecialchars($dadoMsg[0][0]) . " " . htmlspecialchars($dadoMsg[0][1]);
$img = base64_encode($dadoMsg[0][2]);
$html .= "<img src='data:image/jpg;base64,$img'>
<div>
<h5>$nome</h5>
</div>";
}
echo $html;
}catch(Exeption $ex){
echo null;
}
}else{
header("location: Inicio.php");
}
?>