Просмотр файла manager1/table.php

Размер файла: 2.91Kb
<?php
/*
////////////////////////////////////////////////////////////////////////////////
//                  Футбольный менеджер  для  JohnCMS                         //
//                             Модификация                                    //
////////////////////////////////////////////////////////////////////////////////
// Anubis(Юрий) (379-619-623)           - [email protected]                //
//                             Wap site - http://mobisports.ru                //
////////////////////////////////////////////////////////////////////////////////
*/
define('_IN_JOHNCMS', 1);
$textl = 'Менеджер';
require_once ("../incfiles/core.php");
require_once ("../incfiles/head.php");

if (!$user_id) {
    echo '<div class="rmenu"><p>Доступ в менеджер открыт только <a href="../login.php">авторизованным</a> посетителям</p></div>';
    require_once ("../incfiles/end.php");
    exit;
}
    ########
        //Вставляю список команд и лигу
    require_once ("team.php");
    ################
    //************************************************************************
    $array_c = array('russia' => 'Россия', 'ukraine' => 'Украина', 'italy' =>
        'Италия', 'england' => 'Англия', 'spain' => 'Испания', 'germany' => 'Германия', 'france' => 'Франция', 'germany' => 'Португалия');
    echo '<br/><center>Турнирная таблица - ' . $array_c[$c] . '</center><br/>';

    echo '<table border="0" width="100%" bgcolor="D0D0D0" cellspacing="1" cellpadding="4">
<tr bgcolor="40B832" style="color:white;" align="center"><th>№</th><th>Команда</th><th>И</th><th>МЗ</th><th>МП</th><th>В</th><th>Н</th><th>П</th><th>О</th></tr>';
    $file = file('' . $c . '/tt.dat');
    for ($i = 0; $i < count($file); $i++) {
        $ex = explode("|", $file[$i]);
        $j = $i + 1;
if ($ex[0]==$club) {
                echo '<tr bgcolor="e9ccd2">';
            } else {
                echo ceil(ceil($i / 2) - ($i / 2)) == 0 ? '<tr bgcolor="ffffff">' :
                    '<tr bgcolor="f3f3f3">';
            }
            echo '
<td width="5%" align="center">' . $j . '</td>
<td> <img src="img/' . $ex[0] . '.gif" alt=""/> <a href="clubinfo.php?act=info&amp;xxx=' . $ex[0] .
                '"><b>' . $ex[0] . '</b></a></td>
  <td align="center">' . $ex[1] . '</td> 
  <td align="center">' . $ex[2] . '</td>
  <td align="center">' . $ex[3] . '</td>
  <td align="center">' . $ex[4] . '</td>
  <td align="center">' . $ex[5] . '</td>
  <td align="center">' . $ex[6] . '</td>
  <td align="center">' . $ex[7] . '</td>             
';
echo '</tr>';
    }
    echo '</table>';
    echo '<br/>';
echo '[<a href="main.php">В панель управления</a>]<br/>';
require_once ("../incfiles/end.php");