Changeset 873 for trunk/Modules/TV/tkr.php
- Timestamp:
- Apr 6, 2020, 11:17:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/TV/tkr.php
r738 r873 12 12 '<tr><th>Číslo</th<th>Jméno stanice</th><th>Frekvence [MHz]</th><th>Jazyk</th></tr>'; 13 13 $DbResult = $this->Database->select('TV', '*', ' 1 ORDER BY Id'); 14 while ($Row = $DbResult->fetch_array())14 while ($Row = $DbResult->fetch_array()) 15 15 { 16 16 $Output .= '<tr><td>'.$Row['Id'].'</td><td><a href="'.$Row['Homepage'].'">'.$Row['Name'].'</a></td><td align="right">'.($Row['Frequency'] / 1000).'</td><td>'.$Row['Language'].'</td></tr>'; 17 17 } 18 18 $Output .= '</table>Aktualizováno dne 17.12.2007<br></div>'; 19 return ($Output);19 return ($Output); 20 20 } 21 21 }
Note:
See TracChangeset
for help on using the changeset viewer.