pdf_detail.php 574 B

12345678910111213141516171819202122232425
  1. <?php
  2. $KNAME = $_GET['KNAME'];
  3. $Kstra = $_GET['Kstra'];
  4. $Kdplz = $_GET['Kdplz'];
  5. $Kdort = $_GET['Kdort'];
  6. $Ktelf = $_GET['Ktelf'];
  7. $BelNr = $_GET['BelNr'];
  8. $ReDat = $_GET['ReDat'];
  9. $Verka = $_GET['Verka'];
  10. if ( substr($Verka, 4, 1) == '-' ) { $Verka = substr($Verka, 7, strlen($Verka)-5); }
  11. $Betri = $_GET['Betri'];
  12. $RechBe = $_GET['RechBe'];
  13. $OffBe = $_GET['OffBe'];
  14. $Mahnst = $_GET['Mahnst'];
  15. require('fpdf.php');
  16. $pdf=new FPDF();
  17. $pdf->AddPage();
  18. $pdf->SetFont('Arial','B',16);
  19. $pdf->Cell(40,10,'Hallo Welt!');
  20. $pdf->Output();
  21. ?>