-
Notifications
You must be signed in to change notification settings - Fork 3
/
dTipZivotinje.php
35 lines (31 loc) · 892 Bytes
/
dTipZivotinje.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
include_once('aplikacijskiOkvir.php');
session_start();
$greske="";
$baza=new Baza();
$korisnik = provjeraKorisnika();
$ispis="";
if($korisnik->get_vrsta()==1){
dnevnik_zapis("Brisanje zapisa u tablici tip životinje");
if (isset($_GET['idTipZivotinje'])){
$idTipZivotinje=$_GET['idTipZivotinje'];
$upit="Delete from tipZivotinje where tipZivotinjeID='$idTipZivotinje'";
if(!$baza->ostaliUpiti($upit)){
$greske.="Greška kod rada sa bazom.<br>";
}else{
dnevnik_zapis("Obrisan zapis u tablici tip korisnika");
header('Location: crudTipZivotinje.php');
exit();
}
}else{
$greske.="Greška.<br>";
}
if (!empty($greske)){
header('Location: greske.php?kod='.$greske);
exit();
}
}else{
header("Location: greske.php?e=2");
exit();
}
?>