Ignore:
Timestamp:
Apr 14, 2015, 10:20:16 PM (10 years ago)
Author:
chronos
Message:
  • Removed: Spaces on end of line.
  • Modified: Tabs converted to spaces.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/FinanceBankAPI/FioDemo.php

    r548 r738  
    11<?php
    2  
     2
    33include('FioAPI.php');
    4  
     4
    55$Fio = new FioAPI();
    66$Fio->Token = '';
     
    1414{
    1515  echo('<tr>');
    16   if($Record['Type'] == GPC_TYPE_REPORT) 
     16  if($Record['Type'] == GPC_TYPE_REPORT)
    1717  {
    1818    echo('<td>Jméno účtu: '.$Record['AccountName'].'</td>');
     
    2222    echo('<td>Suma příjmů: '.$Record['CreditValue'].' Kč</td>');
    2323    echo('<td>Suma výdajů: '.$Record['DebitValue'].' Kč</td>');
    24  
     24
    2525    echo('</tr></table><br><br>');
    2626    echo('<table border="1"><tr>');
    27  
     27
    2828    echo('<th>Datum</th>');
    2929    echo('<th>Částka</th>');
     
    3535    echo('<th>Uživatelská identifikace</th>');
    3636  } else
    37   if($Record['Type'] == GPC_TYPE_ITEM) 
     37  if($Record['Type'] == GPC_TYPE_ITEM)
    3838  {
    3939    echo('<td>'.date('j.n.Y', $Record['DueDate']).'</td>');
     
    4545    echo('<td>'.$Record['SpecificSymbol'].'</td>');
    4646    echo('<td>'.$Record['ClientName'].'</td>');
    47   }         
     47  }
    4848  echo('</tr>');
    49  
     49
    5050}
    5151echo('</table>');
Note: See TracChangeset for help on using the changeset viewer.