Changeset 147 for trunk/download.php
- Timestamp:
- Mar 5, 2009, 8:18:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/download.php
r143 r147 5 5 ShowPage(); 6 6 7 function GetPercentOfTable($TableID,$Users) { 7 function GetPercentOfTable($TableID,$Users) 8 { 8 9 9 10 global $Database; … … 60 61 } 61 62 62 63 if (array_key_exists('addon', $_GET)){64 echo('<br />Stažený soubor pouze rozbalte a zkopírujte do kořenové složky wow (C:\Program Files\World Of Warcraft\) <br /><br /><table class="BaseTable"><tr><th>Verze/datum</th><th>Popis</th></tr>');65 66 while($Line = mysql_fetch_assoc($ID)) { 67 echo('<tr>68 <td><strong>'.$Line['verse'].'</strong> <a href="tmp/Addon/CzWoW_'.$Line['verse'].'.zip">Stáhnout</a> <br />'.$Line['date'].'</td>69 <td>'.str_replace(chr(13),'<br />',$Line['text']).'</td>70 71 72 73 63 if(array_key_exists('addon', $_GET)) 64 { 65 echo('<br />Stažený soubor pouze rozbalte a zkopírujte do kořenové složky wow (C:\Program Files\World Of Warcraft\) <br /><br /><table class="BaseTable"><tr><th>Verze/datum</th><th>Popis</th></tr>'); 66 $ID = $Database->SQLCommand('SELECT * FROM verseclient ORDER BY DATE DESC'); 67 while($Line = mysql_fetch_assoc($ID)) 68 { 69 echo('<tr>'. 70 '<td><strong>'.$Line['verse'].'</strong> <a href="tmp/Addon/CzWoW_'.$Line['verse'].'.zip">Stáhnout</a> <br />'.$Line['date'].'</td>'. 71 '<td>'.str_replace(chr(13),'<br />',$Line['text']).'</td>'); 72 echo('</tr>'); 73 } 74 echo('</table>'); 74 75 } else 75 76 { … … 86 87 87 88 <a href="http://mangos.cjb.net/forums/index.php?showforum=15">Čeština do Minimanageru</a><br /> 88 <a href="http://mangos.cjb.net/forums/index.php?showtopic=359">Čeština pro AoWoW</a> - Webový prohlížeč databáze pro emulátor MaNGOS podle wowhead.com<br />'); 89 <a href="http://mangos.cjb.net/forums/index.php?showtopic=359">Čeština pro AoWoW</a> - Webový prohlížeč databáze pro emulátor MaNGOS podle wowhead.com<br /> 90 <br />'); 91 92 echo('<h3>Pomocné programy:</h3> 93 94 <a href="download/mpqediten32.zip">Ladik\'s MPQ Editor</a><br /> 95 '); 89 96 90 97 }
Note:
See TracChangeset
for help on using the changeset viewer.