Legend:
- Unmodified
- Added
- Removed
-
gm.php
r14 r28 1 <? 1 <?php 2 2 include('global.php'); 3 3 ShowHeader(); 4 4 include('download_soubory/files.php'); 5 ?>6 5 7 <TABLE width="100%" border="0"> 8 <TR> 6 echo('<h3>GM tým</h3>'); 9 7 10 11 <TD width="3%" valign="top">12 13 <TD valign="top">14 <br><H3>HOF TEAM</H3>15 16 17 18 <?php19 8 $Database->select_db('wow'); 20 9 $Result = $Database->query('SELECT * FROM user WHERE ban = 0'); 10 echo '<table border="0">'; 21 11 while ($Line = $Result->fetch_array()) 22 12 { 23 echo '<table border="0">'; 24 echo '<tr><td><p>Pøezdívka:</p></td>';; 13 echo '<tr><td><p>Pøezdívka:</p></td>'; 25 14 echo '<td><p><b>'.$Line['User'].'</b></p></td>'; 26 15 echo '</tr>'; … … 54 43 echo '<td><p><b><a href="http://wow.zdechov.net/forum/profile.php?mode=viewprofile&u='.$Line['ForumID'].'">Profil</a></b></p></td>'; 55 44 echo '</tr>'; 45 echo('<tr><td colspan="2"><br></td></tr>'); 56 46 57 echo '</table><br><br />';58 47 } 59 ?> 60 61 62 </TABLE> 63 64 <? 48 echo '</table>'; 65 49 ShowFooter(); 66 50 ?>
Note:
See TracChangeset
for help on using the changeset viewer.