-
Notifications
You must be signed in to change notification settings - Fork 0
/
AtualizarEstrela.php
48 lines (38 loc) · 1.44 KB
/
AtualizarEstrela.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("conexao.php");
include_once("functions.php");
if(ProtegePag() == true){
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$id = (isset($_POST['id'])) ? $_POST['id'] : '';
if(!empty($id)){
$user = $_SESSION['login'];
$SQLEstrela = "SELECT Estrela FROM suporte WHERE id = :id AND UserReceptor = :UserReceptor";
$SQLEstrela = $banco->prepare($SQLEstrela);
$SQLEstrela->bindParam(':id', $id, PDO::PARAM_INT);
$SQLEstrela->bindParam(':UserReceptor', $user, PDO::PARAM_STR);
$SQLEstrela->execute();
$LnEstrela = $SQLEstrela->fetch();
$Estrela = $LnEstrela['Estrela'] == "S" ? "N" : "S";
$SQL = "UPDATE suporte SET
Estrela = :Estrela
WHERE id = :id AND UserReceptor = :UserReceptor";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':Estrela', $Estrela, PDO::PARAM_STR);
$SQL->bindParam(':id', $id, PDO::PARAM_INT);
$SQL->bindParam(':UserReceptor', $user, PDO::PARAM_STR);
$SQL->execute();
//Estrela
$PastaEstrela = 4;
$Estrela = "S";
$SQLEstrela = "SELECT id FROM suporte WHERE UserReceptor = :UserReceptor AND Estrela = :Estrela AND PastaReceptor != :PastaReceptor";
$SQLEstrela = $banco->prepare($SQLEstrela);
$SQLEstrela->bindParam(':UserReceptor', $user, PDO::PARAM_STR);
$SQLEstrela->bindParam(':Estrela', $Estrela, PDO::PARAM_STR);
$SQLEstrela->bindParam(':PastaReceptor', $PastaEstrela, PDO::PARAM_STR);
$SQLEstrela->execute();
$TotalEstrela = count($SQLEstrela->fetchAll());
echo $TotalEstrela;
}
}
}
?>