Ignore:
Timestamp:
Nov 17, 2007, 10:49:05 AM (17 years ago)
Author:
george
Message:

Promazání složky administrace. Bude potřeba udělat kompletně nový systém. Příliš mnoho věci se změnilo a administrace se dlouho nepoužívala a zestárla.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • administrace/george/restarty.php

    r11 r121  
    11<?php
    22
    3 include_once('db.php');
    4 include_once('../../config.php');
    53echo('<strong>Posledních 10 restartù MaNGOSu:</strong><br>');
    64echo('<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');
     6while($Row = $DbResult->fetch_array())
    107{
    118  echo($Row['time'].'<br>');
Note: See TracChangeset for help on using the changeset viewer.