-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretirar_tipo_registo.php
60 lines (48 loc) · 1.77 KB
/
retirar_tipo_registo.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
<html>
<body>
<h2>Bloco de Notas</h2>
<h4>Retirar página</h4>
<?php
session_start();
include('functions.php');
echo("<h5>Sessão de {$_SESSION['nome']} </h5>");
$connection=createConnection();
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$typeCounter = test_input($_POST["tipo_reg_id"]);
}
//obter dados da pagina
$sql = "SELECT * from tipo_registo WHERE userid=".$_SESSION['id']." AND typecnt=$typeCounter AND ativo=1";
$result = $connection->query($sql);
if (!$result) {
die('Tipo de registo inexistente ' . mysql_error());
//significa que alguem apagou antes da transacao comecar
}
$rows = $result->fetchAll();
//criar counter do novo tipo de registo (apagado)
$newTypeCounter = geraId(typecnt, tipo_registo, $connection);
try{
$connection->beginTransaction();
//receber novo idseq da nova entrada no log
$idSeq = geraIdSeq($connection);
//colocar ativa a 0
$sql = "UPDATE tipo_registo SET ativo=0 WHERE userid=".$_SESSION['id']." AND typecnt=$typeCounter AND ativo=1";
if ($connection->query($sql) === FALSE) {
die( "Error: " . $sql . "<br>" . $conn->error);
}
$sql = "INSERT INTO tipo_registo (userid, ptypecnt, nome, ativo, typecnt, idseq)
VALUES (".$rows[0][userid].", ".$rows[0][typecnt].", '".$rows[0][nome]."', 0, $newTypeCounter, $idSeq)";
if ($connection->query($sql) === FALSE) {
die( "Error: " . $sql . "<br>" . $conn->error);
}
$connection->commit();
} catch (Exception $e) {
$connection->rollBack();
echo "Failed: " . $e->getMessage();
}
echo("<br></br>");
echo("<p>Tipo de registo removido com sucesso</p>");
buttons();
$connection->close();
?>
</body>
</html>