Changeset 572 for trunk/pages
- Timestamp:
- Apr 22, 2009, 11:46:54 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pages/gmteam.php
r571 r572 8 8 $db->select_db($db_realmd); 9 9 $Result = $db->query('SELECT * FROM account WHERE (locked = 0) AND (gmlevel > 0) ORDER BY gmlevel DESC'); 10 echo('<table border="0" align="center">');10 echo('<table border="0" cellpadding="3" align="center">'); 11 11 while($Line = $Result->fetch_array()) 12 12 { … … 15 15 16 16 echo('<tr><td>Přezdívka:</td>'); 17 echo('<td ><strong>'.$Line['username'].'</strong></td>');17 echo('<td style="text-align: left; font-weight: bold;">'.$Line['username'].'</td>'); 18 18 echo('</tr>'); 19 19 echo('<tr><td>Pověření:</td>'); 20 echo('<td ><strong>'.$Line['Note'].'</strong></td>');20 echo('<td style="text-align: left; font-weight: bold;">'.$Line['Note'].'</td>'); 21 21 echo('</tr>'); 22 22 /* … … 31 31 $db->select_db($db_characters); 32 32 echo('<tr><td>GM Postavy ve hře:</td>'); 33 echo('<td ><strong>');33 echo('<td style="text-align: left; font-weight: bold;">'); 34 34 $Characters = array(); 35 35 $ResultMangos = $db->query('SELECT * FROM `characters` WHERE account = "'.$Line['id'].'"'); … … 40 40 } 41 41 echo(implode(', ', $Characters)); 42 echo('</ strong></td></tr>');42 echo('</td></tr>'); 43 43 44 44 // $Database->select_db($Config['Mangos']['DatabaseRealmd']);
Note:
See TracChangeset
for help on using the changeset viewer.