-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcPopisBolesti.php
50 lines (41 loc) · 1.2 KB
/
cPopisBolesti.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
<?php
include_once('aplikacijskiOkvir.php');
$baza=new Baza();
$greske="";
$pom=0;
$ispis="";
$ispis2="";
session_start();
$korisnik = provjeraKorisnika();
if($korisnik->get_vrsta()==1){
dnevnik_zapis("Kreiranje popisa bolesti");
if(isset($_POST['cPopisBolesti'])) {
if(empty($_POST['naziv'])){
$greske.="Obavezno je napisati naziv bolesti.<br>";
}else{
$naziv = $_POST['naziv'];
}
if (empty($greske)) {
$upit = "insert into popisBolesti (popisBolestiNaziv) values ('$naziv')";
if (!$baza->ostaliUpiti($upit)){
$greske.="Greska pri radu s bazom podataka. <br>";
}else{
dnevnik_zapis("Uspješno kreiran popis bolesti");
header("Location: crudPopisBolesti.php");
}
}
if (!empty($greske)){
header('Location: greske.php?kod='.$greske);
exit();
}
}
}else{
header("Location: greske.php?e=2");
exit();
}
include 'headerLogIn.php';
$skripta="cPopisBolesti.php";
$smarty->assign('skripta', $skripta);
$smarty->display('predlosci/cPopisBolesti.tpl');
include 'footer.php';
?>