-
Notifications
You must be signed in to change notification settings - Fork 0
/
AtualizarLixeiraSupp.php
48 lines (38 loc) · 1.27 KB
/
AtualizarLixeiraSupp.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') {
$SelectBox = (isset($_POST['SelectBox'])) ? $_POST['SelectBox'] : '';
if(empty($SelectBox)){
echo MensagemAlerta("Erro", "Como você fez isso?", "danger");
}
else{
$user = $_SESSION['login'];
$Pasta = 4;
$SQL = "UPDATE suporte SET
PastaReceptor = :PastaReceptor
WHERE id = :id AND UserReceptor = :UserReceptor";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':PastaReceptor', $Pasta, PDO::PARAM_INT);
$SQL->bindParam(':id', $SelectBox, PDO::PARAM_INT);
$SQL->bindParam(':UserReceptor', $user, PDO::PARAM_STR);
$SQL->execute();
$SQL = "UPDATE suporte SET
PastaEmissor = :PastaEmissor
WHERE id = :id AND UserEmissor = :UserEmissor";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':PastaEmissor', $Pasta, PDO::PARAM_INT);
$SQL->bindParam(':id', $SelectBox, PDO::PARAM_INT);
$SQL->bindParam(':UserEmissor', $user, PDO::PARAM_STR);
$SQL->execute();
if(empty($SQL)){
echo MensagemAlerta("Erro", "Ocorreu um erro ao processar a solicitação, por favor, tente mais tarde.", "danger");
}
else{
echo MensagemAlerta("Sucesso", "Excluído com sucesso!", "success", "index.php?p=suporte");
}
}
}
}
?>