Title = 'Kanály kabelové televize'; $this->Description = 'Seznam televizních kanálů místní kabelové televize'; } function Show(): string { $Output = '
Výpis kanálů:
'. ''. ''; $DbResult = $this->Database->select('TV', '*', ' 1 ORDER BY Id'); while ($Row = $DbResult->fetch_array()) { $Output .= ''; } $Output .= '
ČísloJméno staniceFrekvence [MHz]Jazyk
'.$Row['Id'].''.$Row['Name'].''.($Row['Frequency'] / 1000).''.$Row['Language'].'
Aktualizováno dne 17.12.2007
'; return $Output; } } $Page = new CableTVChennelListPage($System); $Page->GetOutput();