-
Notifications
You must be signed in to change notification settings - Fork 3
/
korisnici.php
36 lines (31 loc) · 1.46 KB
/
korisnici.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
<?php
include_once('../aplikacijskiOkvir.php');
$greske="";
$baza=new Baza();
$ispis="";
require_once '../Smarty-3.1.18/libs/Smarty.class.php';
$smarty = new Smarty();
$upitKorisnik="SELECT korisnikID, korisnikIme,korisnikaPrezime,korisnikKIme,korisnikaLozinka,tipKorisnikaNaziv from korisnik,tipKorisnika where tipKorisnikaID=tipKorisnika_tipKorisnikaID";
if($podaciKorisnik=$baza->selectUpiti($upitKorisnik)){
$ispis="<table class='veterinariAmbulanta'><thead><tr><th width='100'>ID</th><th width='100'>Ime</th><th width='100'>Prezime</th><th width='100'>Korisničko ime</th><th width='100'>Lozinka</th><th width='100'>Tip korisnika</th></tr></thead><tbody>";
while($red = $podaciKorisnik->fetch_array()){
$ispis.='<tr>';
$ispis.="<td>".$red['korisnikID']."</td>";
$ispis.="<td>".$red['korisnikIme']."</td>";
$ispis.="<td>".$red['korisnikaPrezime']."</td>";
$ispis.="<td>".$red['korisnikKIme']."</td>";
$ispis.="<td>".$red['korisnikaLozinka']."</td>";
$ispis.="<td>".$red['tipKorisnikaNaziv']."</td>";
$ispis.='</tr>';
}
$ispis.="</tbody></table>";
}else{
$greske.="Greska pri radu s bazom podataka. <br>";
}
if (!empty($greske)){
header('Location: greske.php?kod='.$greske);
exit();
}
$smarty->assign('ispis', $ispis);
$smarty->display('../predlosci/korisnici.tpl');
?>