Ignore:
Timestamp:
Aug 19, 2009, 9:06:06 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Strkutura a názvy tabulek gm_tym, finance, finance_rewards.
  • Upraveno: Stránka informací o serveru doplněna pro podporu zobrazení více fyzických serverů.
  • Přidáno: Zobrazení dřívějších GM v dolní částí stránky GM týmu.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pages/dotation.php

    r625 r627  
    1010    <th>Příspěvek(CZK)</th>
    1111  </tr>';
    12 $load_dotation = $db->query('SELECT * FROM `finance_reward` ORDER BY `Price` DESC');
     12$load_dotation = $db->query('SELECT * FROM `FinanceReward` ORDER BY `Price` DESC');
    1313while($row = $load_dotation->fetch_assoc())
    1414{
     
    3131);
    3232
    33 $load_money = $db->query('SELECT SUM(`money`) FROM `finance`;')->fetch_row();
     33$load_money = $db->query('SELECT SUM(`Money`) FROM `Finance`;')->fetch_row();
    3434
    3535$Output .= '<p><strong>Aktuální stav financí: '.$load_money[0].' Kč</strong></p>';
     
    4242  '</tr>';
    4343
    44 $load_dotation = $db->query('SELECT * FROM `finance` ORDER BY `id` DESC');
     44$load_dotation = $db->query('SELECT * FROM `Finance` ORDER BY `Id` DESC');
    4545while($row = $load_dotation->fetch_assoc())
    4646{
    47   $odmena = $row['odmena'];
     47  $odmena = $row['Reward'];
    4848 
    49   if($row['time'] != '')
     49  if($row['Time'] != '')
    5050  {
    51     $date = $server->HumanDate($row['time'], 0);
     51    $date = $server->HumanDate($row['Time'], 0);
    5252    //$date = $row['time'];
    5353  } else $date = '';
    54   if($row['money'] > 0) $plus = '+';
     54  if($row['Money'] > 0) $plus = '+';
    5555    else $plus = '';
    5656  $Output .= '<tr>'.
    5757    '<td>'.$date.'</td>'.
    58     '<td>'.$plus.$row['money'].'</td>'.
    59     '<td>'.$operace[$row['operation']].' '.$row['description'].'</td>'.
     58    '<td>'.$plus.$row['Money'].'</td>'.
     59    '<td>'.$operace[$row['Operation']].' '.$row['Description'].'</td>'.
    6060    '<td>'.$odmena.'</td>'.
    6161    '</tr>';
Note: See TracChangeset for help on using the changeset viewer.