'; if (isset($_GET['o']) && $_GET['o'] == 'desc') { $tabela .= 'Autor Rezultat Naziv rezultatOpis Godina Nadležna institucija Ostali autori Prilog'; if ($_SESSION['vrsta_korisnika'] == 1) $tabela .= 'Akcije'; $tabela .= ''; } else { $tabela .= 'Autor Rezultat Naziv rezultat Opis Godina Nadležna institucija Ostali autori Prilog'; if ($_SESSION['vrsta_korisnika'] == 1) $tabela .= 'Akcije'; $tabela .= ''; } while ($row = mysql_fetch_assoc($s)) { $sql = 'SELECT * FROM upload WHERE REZULTAT = ' . $row['ID_REZULTATA']; $upload = mysql_query($sql, $nrad) or die(mysql_error()); $row_prilog = mysql_fetch_assoc($upload); $br_redovaUbazi = mysql_affected_rows(); if ($br_redovaUbazi == 0) $prilog = 'Prilog'; else { $prilog = 'Prilog'; } $StudentIme = $row['ime']; $StudentPrezime = $row['prezime']; $komanda = "javascript:confirmation(".$row['ID_REZULTATA'].")"; $class=""; if ($i % 2 == 0) $class="class='odd'"; $i++; $position=20; // Define how many character you want to display. $opis = substr($row['OPIS'], 0, $position); $opis .= '...'; $tabela .= ' '.$row['IME'].' '.$row['PREZIME'].' '.$row['NAZIV_REZULTATA'].' '.$row['NAZIV'].' '.$opis.' '.$row['DATUM_POCETKA'].' '.$row['NAZIV_ORG_JED_UNIVERZITETA'].' '; $upit = 'SELECT nastavni_kadar.ime as name, nastavni_kadar.prezime as lastname, ucesnici.AUTOR FROM nastavni_kadar, ucesnici WHERE ucesnici.REZULTAT = "'.$row['ID_REZULTATA'].'" AND ucesnici.NASTAVNIK = nastavni_kadar.ID_NASTAVNIKA AND ucesnici.AUTOR <> 1 ORDER BY nastavni_kadar.ime ASC'; $ucesnici = mysql_query($upit, $nrad) or die(mysql_error()); if (mysql_affected_rows() == 0) $tabela .= 'Nema'; else { while ($rowUcesnik = mysql_fetch_assoc($ucesnici)) { if ($rowUcesnik['AUTOR'] == "") { $tabela .= 'Nema'; } else $tabela .= $rowUcesnik['name'].' '.$rowUcesnik['lastname'].'
'; } } $tabela .= ''; if ($prilog) $tabela .= ''.$prilog.''; else $tabela .= 'Nema priloga'; if ($_SESSION['vrsta_korisnika'] == 1) $tabela .= '
Obriši'; $tabela .= ''; } $tabela .= ''; } } } else { header('Location:index.php'); } ?> Prikaz rezultata
Lista radova