Thread Die Variable wird nicht übergeben.: Session (1 answers)
Opened by nour at 2007-07-10 18:13

nour
 2007-07-10 18:13
#10078 #10078
User since
2006-11-15
108 Artikel
BenutzerIn
[default_avatar]
Hallo
ich habe einen pdf formular mittels php erzeugt.

Mein Php Code ist auf session basiert.

Das problem das beim öffnen das Pdf datei es wird die Variable Name nicht angezeigt!!!

hier ist mein Php Code:

Code: (dl )
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

View full thread Die Variable wird nicht übergeben.: Session