13 lines
No EOL
471 B
PHP
13 lines
No EOL
471 B
PHP
<?php
|
|
|
|
//**********************************************************************************************************************************
|
|
//$za++;
|
|
if (isset($etour[$ze]['datum'])) {
|
|
$pdf->Cell(23,4,(utf8_decode($etour[$ze]['datum'])),'0','0','R','0');
|
|
$pdf->Cell(22,4,(utf8_decode(" ".$etour[$ze]['tour'])),'0','0','L','0');
|
|
$pdf->Cell(35,4,(utf8_decode($etour[$ze]['tarif']." EUR")),'0','1','R','0');
|
|
}else{
|
|
$pdf->Cell(40,4,(" "),'0','1','R','0');
|
|
}
|
|
$ze++;
|
|
?>
|