Changeset 613 for trunk/pages/commands.php
- Timestamp:
- Aug 7, 2009, 11:16:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pages/commands.php
r612 r613 6 6 7 7 $Output .= '<ul>'; 8 $DbResult = $db->query('SELECT * FROM `command` WHERE security=0 ');8 $DbResult = $db->query('SELECT * FROM `command` WHERE security=0 ORDER BY name'); 9 9 while($DbRow = $DbResult->fetch_assoc()) 10 10 { 11 $Output .= '<li><strong> .'.$DbRow['name'].'</strong> - '.$DbRow['help'].'</li>';11 $Output .= '<li><strong>'.$DbRow['name'].'</strong> - '.$DbRow['help'].'</li>'; 12 12 } 13 13 $Output .= '</ul>';
Note:
See TracChangeset
for help on using the changeset viewer.