Changeset 215 for quests/ListQuests.php
- Timestamp:
- Jan 12, 2008, 3:37:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quests/ListQuests.php
r211 r215 61 61 } 62 62 63 if(array_key_exists('selection', $_GET)) { 64 63 if(array_key_exists('selection', $_GET)) { 64 65 echo '<br /><b>Prioritnì by jste mìli pøekládat tyto questy:</b><br />'; 66 67 $ID = $Database->SQLCommand("SELECT * FROM `quests_status` ORDER BY CountQuest DESC"); 68 echo '<table border="1" cellpadding="2" cellspacing="0"> 69 <tr><th>Poøadové èíslo</th><th>ID questu</th><th>Název Questu</th><th>Poèet splnìní na serveru</th></tr>'; 70 $i = 0; 71 while ($Line = mysql_fetch_array($ID)) { 72 if ($i < '6') { 73 $LineTranslate = mysql_fetch_array($Database->SQLCommand("SELECT * FROM quests WHERE Language <> 0 AND entry = '".$Line['QuestEntry']."'")); 74 if (!$LineTranslate) { 75 $LineAJQuest = mysql_fetch_array($Database->SQLCommand("SELECT * FROM quests WHERE Language = 0 AND entry = '".$Line['QuestEntry']."'")); 76 echo '<tr><td><a href="form.php?ID='.$Line['ID'].'">'.$Line['ID'].'</a></td> 77 <td>'.$LineAJQuest['entry'].'</td> 78 <td>'.$LineAJQuest['Title'].'</td> 79 <td>'.$Line['CountQuest'].'</td></tr>'; 80 $i = $i +1; 81 } 82 } 83 } 84 85 echo '</table><br />'; 86 87 echo '<b>Ostatní:</b><br /><br />'; 88 65 89 for ($i=0; $i<30; ++$i) { 66 90 $limity = 200; … … 70 94 } 71 95 echo '<a href="ListQuests.php?limitx='.$limitx.'&limity=6000">Zbytek</a><br />'; 96 97 72 98 // echo '<a href="ListQuests.php?limitx=3500&limity=4000">3500-4000</a><br />'; 73 99 }
Note:
See TracChangeset
for help on using the changeset viewer.