-
Notifications
You must be signed in to change notification settings - Fork 0
/
eRelacionamento.php
25 lines (25 loc) · 963 Bytes
/
eRelacionamento.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
<?php
require_once("controle/ControleRelacionamento.php");
if (!empty($_POST["id"]) && !empty($_POST["aluno"]) && !empty($_POST["turma"]) && !empty($_POST["curso"])) {
$rel = new Relacionamento();
$rel->setAluno(intval($_POST["aluno"]));
$rel->setTurma(intval($_POST["turma"]));
$rel->setCurso(intval($_POST["curso"]));
$controle = new ControleRelacionamento();
if ($controle->editar($rel, intval($_POST["id"]))) {
echo "<script>";
echo "console.log('Operação bem sucedida');";
echo "</script>";
header("Location: http://localhost/av_php/editarRelacionamento.php");
} else {
echo "<script>";
echo "console.error('Erro na operação');";
echo "</script>";
header("Location: http://localhost/av_php/editarRelacionamento.php");
}
} else {
echo "<script>";
echo "console.error('Não deixe campos em branco!');";
echo "</script>";
header("Location: http://localhost/av_php/editarRelacionamento.php");
}