-
Notifications
You must be signed in to change notification settings - Fork 3
/
cAmbulanta.php
74 lines (61 loc) · 1.81 KB
/
cAmbulanta.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
66
67
68
69
70
71
72
73
74
<?php
include_once('aplikacijskiOkvir.php');
$baza=new Baza();
$greske="";
session_start();
$korisnik = provjeraKorisnika();
if($korisnik->get_vrsta()==1){
dnevnik_zapis("CRUD kreiranje ambulanti");
if(isset($_POST['cAmbulanta'])) {
if(empty($_POST['naziv'])){
$greske.="Unos naziva je obavezan.<br>";
}else{
$naziv = $_POST['naziv'];
if (ucfirst($naziv) != $naziv){
$naziv=ucfirst($naziv);
}
}
if(empty($_POST['adresa'])){
$greske.="Unos adrese je obavezan.<br>";
}else{
$k_adresa = $_POST['adresa'];
}
if(empty ($_POST['grad'])){
$greske.="Unos grada je obavezan.<br>";
}else{
$k_grad = $_POST['grad'];
}
if(empty($_POST['telefon'])){
$greske.="Unos broja telefona je obavezan.<br>";
}else{
$k_telefon = $_POST['telefon'];
}
if(empty($_POST['radnoVrijeme'])){
$greske.="Unos radnog vremena je obavezno.<br>";
}else{
$radVrijeme = $_POST['radnoVrijeme'];
}
if (!empty($greske)){
header('Location: greske.php?kod='.$greske);
exit();
}
if (empty($greske)) {
$upit = "insert into ambulanta(ambulantaNaziv,ambulantaAdresa,ambulantaGrad,ambulantaTelefon,ambulantaRadnoVrijeme) values ('$naziv','$k_adresa','$k_grad','$k_telefon','$radVrijeme')";
if (!$baza->ostaliUpiti($upit)){
$greske.="Greska pri radu s bazom podataka. <br>";
}else{
dnevnik_zapis("Uspješno kreirana ambulanta");
header('Location: crudAmbulanta.php');
}
}
}
}else{
header("Location: greske.php?e=2");
exit();
}
include 'headerLogIn.php';
$skripta="cAmbulanta.php";
$smarty->assign('skripta', $skripta);
$smarty->display('predlosci/cAmbulanta.tpl');
include 'footer.php';
?>