2 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
session_start();
if (isset($_GET['name']))
{
require('fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','',12);
$pdf->MultiCell(160,40,'','C');
$pdf->SetTextColor(0, 0, 0);
//Name
$pdf->SetXY(10, 75);
$pdf->Cell( 40, 10, 'Name:', 0, 1 );
//Name Inhalt Eingeben
$pdf->SetXY(52, 76);
//Cell Hintergrund Farbe
$pdf->SetFillColor(210, 250, 255);
$pdf->Cell( 110, 5, $_SESSION['name'] = $_GET['name'], 1, 1,'',1 );
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="mein.pdf"');
$pdf->Output('Mitarbeiter.pdf', 'I');
}
?>
kann mich jemand helfen?
danke im voraus
2 Einträge, 1 Seite |