-
Notifications
You must be signed in to change notification settings - Fork 3
/
dodajLjubimca.php
65 lines (60 loc) · 1.98 KB
/
dodajLjubimca.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
61
62
63
64
65
<?php
include_once('aplikacijskiOkvir.php');
session_start();
$greske="";
$baza=new Baza();
$korisnik = provjeraKorisnika();
$ispis="";
if($korisnik->get_vrsta()==3){
dnevnik_zapis("Korisnik dodaje ljubimca");
$idKorisnika=$korisnik->get_id();
$upit="Select * from tipZivotinje";
if($podaci=$baza->selectUpiti($upit)){
while($red=$podaci->fetch_array()){
$ispis.="<option value='{$red['tipZivotinjeID']}'>{$red['tipZivotinjeNaziv']}</option>";
}
}else{
$greske.="Greška pri radu s bazom podataka. <br>";
}
if (isset($_POST['dodajLjubimca'])){
$idKorisnikaDodaj=$_GET['idKor'];
if(empty($_POST['naziv'])){
$greske.="Unos naziva je obavezan.<br>";
}else{
$naziv = $_POST['naziv'];
}
if(empty ($_POST['vrsta'])){
$greske.="Odabir vrste je obavezan.<br>";
}else{
$vrsta = $_POST['vrsta'];
}
if(empty($_POST['starost'])){
$greske.="Unos starosti je obavezan.<br>";
}else{
$starost = $_POST['starost'];
}
if (empty($greske)) {
$upitInsert="Insert into zivotinja(zivotinjaIme,zivotinjaStarost,tipZivotinje_tipZivotinjeID,korisnik_korisnikID) values ('$naziv','$starost','$vrsta',' $idKorisnikaDodaj')";
if( !$baza->ostaliUpiti($upitInsert)){
$greske.="Greška kod rada sa bazom.<br>";
}else{
dnevnik_zapis("Korisnik uspješno dodao ljubimca");
header('Location: kucniLjubimac.php');
}
}
}
if (!empty($greske)){
header('Location: greske.php?kod='.$greske);
exit();
}
}else{
header("Location: greske.php?e=2");
exit();
}
include 'headerLogIn.php' ;
$skripta="dodajLjubimca.php?idKor=".$idKorisnika;
$smarty->assign('skripta', $skripta);
$smarty->assign('ispis', $ispis);
$smarty->display('predlosci/dodajLjubimca.tpl');
include 'footer.php'
?>