Changeset 604 for trunk/pages
- Timestamp:
- May 24, 2009, 11:33:38 AM (15 years ago)
- Location:
- trunk/pages
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pages/spravce-charlog.php
r560 r604 1 1 <?php 2 $soubor = fopen("/a/mangos1/logs/Char.log", "r"); 3 $text = fread($soubor, 1999999); 4 echo($text); 5 fclose($soubor); 2 echo(file_get_contents('/a/mangos1/logs/Char.log')); 6 3 ?> -
trunk/pages/spravce-gmlog.php
r560 r604 1 1 <?php 2 $soubor = fopen("/a/mangos1/logs/GM_Commands.log", "r"); 3 $text = fread($soubor, 1999999); 4 echo($text); 5 fclose($soubor); 2 echo(file_get_contents('/a/mangos1/logs/GM_Commands.log')); 6 3 ?> 7
Note:
See TracChangeset
for help on using the changeset viewer.