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