GetGmLvl(); if($lvl > 0){ echo "
"; $q = $_GET['q']; if(empty($q)): echo"

Vyber kategorii

"; echo"

"; echo"Všechny
"; echo"Server novinky
"; echo"Gm novinky
"; echo"In-Game novinky
"; echo"Články
"; elseif($q == 1): $kategorie = $_GET['c']; if($kategorie == 0): $where = " "; else: $where = "WHERE category='$kategorie'"; endif; $DbResult = $db->query("SELECT id FROM articles $where") $pocet = $DbResult->num_rows; if($pocet != 0): echo""; $query = $db->query("SELECT * from articles $where order by date DESC"); while($row = $query->fetch_array($query)) { $id = $row['id']; echo""; } echo"
AutorDatumNadpis
$row[date] $row[autor] $row[title]
"; else: echo"V této kategorii nejsou žádné novinky!"; endif; elseif($q == 2): $id = $_POST['id']; $query = $db->query("SELECT * from articles where id='$id'"); while($row = $query->fetch_array()) { $autor = $row['autor']; $title = $row['title']; $text = $row['text']; $kategorie = $row['category']; } if($kategorie==1): $option1 = "

"; echo""; echo"

Autor:
"; echo"
Nadpis:
"; echo"
Kategorie:


"; echo"
Text:

"; echo"
"; elseif($q == 3): $autor = $_POST['autor']; $title = $_POST['title']; $text = $_POST['text']; $kategorie = $_POST['kategorie']; $id = $_POST['id']; $upravit = $_POST['upravit']; if($upravit==1 and $lvl > 0): $upravit_autor = $db->query("update articles set autor='$autor' where id='$id'"); $upravit_title = $db->query("update articles set title='$title' where id='$id'"); $upravit_text = $db->query("update articles set text='$text' where id='$id'"); $upravit_kategorie = $db->query("update articles set category='$kategorie' where id='$id'"); if($upravit_autor and $upravit_title and $upravit_text and $upravit_kategorie): echo"

Úprava novinky byla provedena úspěšně!
"; echo"<-- Do administrace"; else: echo"

Při úpravě novinky došlo k chybě, zkuste to prosím později!
"; echo"<-- Do administrace"; endif; else: echo"

Nemáte dostatečná oprávnění pro tuto akci!"; echo""; endif; endif; echo"

"; } else { echo"

Nemáte dostatečná oprávnění pro tuto akci!"; echo""; } ?>