Файл: manager3/users.php
Строк: 16
<?php
define('_IN_JOHNCMS', 1);
$textl = 'Менеджер';
require_once ("../incfiles/core.php");
require_once ("../incfiles/head.php");
require_once ("../incfiles/regglobals.php");
echo'<b><center>*Football MANAGER*</center></b><br/>';
echo '<center>Участники игры:</center><br/>';
$file=file("clubs.dat");
foreach ($file as $key=>$val)
{
$uarr=explode("|",$val);
if ($uarr[1]!=="")
{
echo ''.$uarr[1].' - '.$uarr[0].'<br/>';
}
}
echo '<br/>[<a href="index.php">Назад</a>]<br/>';
require_once ("../incfiles/end.php");
?>