Changeset 121 for administrace/george/restarty.php
- Timestamp:
- Nov 17, 2007, 10:49:05 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
administrace/george/restarty.php
r11 r121 1 1 <?php 2 2 3 include_once('db.php');4 include_once('../../config.php');5 3 echo('<strong>Posledních 10 restartù MaNGOSu:</strong><br>'); 6 4 echo('<div style="font-size: small;">'); 7 DB_Init($DatabaseHost, $DatabaseUser, $DatabasePassword, 'wow'); 8 DB_Select('mangos_restart', '*', '1 ORDER BY time DESC LIMIT 10'); 9 while($Row = DB_Row()) 5 $DbResult = $Database->select('mangos_restart', '*', '1 ORDER BY time DESC LIMIT 10'); 6 while($Row = $DbResult->fetch_array()) 10 7 { 11 8 echo($Row['time'].'<br>');
Note:
See TracChangeset
for help on using the changeset viewer.