<?php

$Output = '<h2 align="center">Herní příkazy</h2>';

$Realm = new Realm($System, $_COOKIE['RealmIndex']);
$db = $Realm->MangosDatabase;

$Output .= '<ul>';
$DbResult = $db->query('SELECT * FROM `command` WHERE security=0 ORDER BY name');  
while($DbRow = $DbResult->fetch_assoc())
{
  $Output .= '<li><strong>'.$DbRow['name'].'</strong> - '.$DbRow['help'].'</li>';
}
$Output .= '</ul>';
echo($Output);

?>
