Просмотр файла game/pole/game.php

Размер файла: 366B
<?php
if ($_SESSION['user_login'] != '')
{
 $status = trim(file_get_contents('game/pole/status.txt'));
    if ($status == '1')
 {
  include('game/pole/otgad.php');
 }
    else
 {
  include('game/pole/sagad.php');
 }
}
else
{
 echo '
   <span class="error">
   Вы не зарегистрированы!
   </span>
   <META HTTP-EQUIV="Refresh" CONTENT="2;">
   ';
}
?>