Changeset 121
- Timestamp:
- Nov 17, 2007, 10:49:05 AM (17 years ago)
- Location:
- administrace
- Files:
-
- 26 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
administrace/george/gm_news.php
r56 r121 1 1 <?php 2 3 include('../../global.php'); 2 4 3 5 if(array_key_exists('action', $_GET)) -
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>'); -
administrace/master.php
r56 r121 31 31 <p> 32 32 <a href="../">Odejít z administrace</a><br> 33 Pøidat aktualitu: 34 <A href="pridatA.php">zde</A> 35 <br>Editovat aktuality: 36 <A href="edit.php">zde</A>'); 33 <br> 34 '); 37 35 //<br>Pro naètení guild, úètù, hráèù: <A href="http://wow.zdechov.net/ListHráèù/load_saves.php">load save</A> 38 36 // <br>List hráèù: <A href="http://wow.zdechov.net/ListHráèù/player_list.php">zde</A> 39 37 ?> 40 <br>Pravidla pro GM:38 Pravidla pro GM: 41 39 <A href="borec/gm_pravidla.php">pravidla</A> 42 40 <br>Statistiky provozu:
Note:
See TracChangeset
for help on using the changeset viewer.