-
Notifications
You must be signed in to change notification settings - Fork 0
/
rTurma.php
34 lines (34 loc) · 1 KB
/
rTurma.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
<?php
require_once("controle/ControleTurma.php");
if (!empty($_POST["id"]) || !empty($_GET["id"])) {
$controle = new ControleTurma();
$id = $_POST["id"] ?? $_GET["id"];
if ($controle->remover(intval($id))) {
if (isset($_GET['id'])) {
echo "alertify.success('Operação bem sucedida');";
} else {
echo "<script>";
echo "console.log('Operação bem sucedida');";
echo "</script>";
header("Location: http://localhost/av_php/removerTurma.php");
}
} else {
if (isset($_GET['id'])) {
echo "alertify.error('Erro na operação');";
} else {
echo "<script>";
echo "console.error('Erro na operação');";
echo "</script>";
header("Location: http://localhost/av_php/removerTurma.php");
}
}
} else {
if (isset($_GET['id'])) {
echo "alertify.error('Não deixe campos em branco!');";
} else {
echo "<script>";
echo "console.error('Não deixe campos em branco!');";
echo "</script>";
header("Location: http://localhost/av_php/removerTurma.php");
}
}