source: branches/old/download_soubory/index.php

Last change on this file was 389, checked in by george, 16 years ago
  • Upraveno: Kódování všech souborů webu bylo převedeno z ISO 8859-2 na obecné UTF-8.
File size: 1.2 KB
Line 
1<?php
2include('../global.php');
3ShowHeader();
4
5include('files.php');
6echo('<h3>Soubory ke stažení:</h3>');
7echo('<div align="center" ><table width="80%" cellspacing="0" style="color: white;">');
8foreach($Files as $GroupName => $Group)
9{
10 if($Group['link'] != '') $www = ' <a href="'.$Group['link'].'">www</a>'; else $www = '';
11 echo('<tr><td colspan="3" style="border-bottom-width: thin; border-bottom-color: white; border-bottom-style: solid;"><strong>'.$Group['title'].$www.'</strong></td></tr>');
12 foreach($Group['files'] as $FileName => $File)
13 {
14 if($File['web'] == '') $Web = '&nbsp;'; else $Web = '<a href="'.$File['web'].'">HTTP</a>';
15 if($File['torrent'] == '') $Torrent = '&nbsp;'; else $Torrent = '<a href="'.$File['torrent'].'">Torrent</a>';
16 echo('<tr style="font-size: small;"><td style="padding-left: 12px;">'.$File['title'].'</td><td>'.$Web.'</td><td>'.$Torrent.'</td></tr>');
17 }
18}
19echo('<tr><td><br>
20<a href="http://wow.zdechov.net:6969/">Heroes of Fantasy BitTorrent Tracker</a><br>
21<a href="http://www.utorrent.com/download.php">Stáhnout BitTorrent klienta uTorrent</a><br>
22<a href="http://www.slunecnice.cz/sw/torrent-harvester/">Stáhnout Torrent Harvester na hledání torrentů</a>
23</td></tr>');
24echo('</table></div>');
25
26ShowFooter();
27?>
Note: See TracBrowser for help on using the repository browser.