Hallo,
folgende Situation:
Ich habe ein PHP Formular. Sobald ich auf den Button "Formular erzeugen" klicke rufe ich meine xfdf.php auf:
folgende Situation:
Ich habe ein PHP Formular. Sobald ich auf den Button "Formular erzeugen" klicke rufe ich meine xfdf.php auf:
PHP:
<?php
$pdf_file= 'http://localhost/Kunde.pdf';
function array2xfdf($xfdf_data, $pdf_file)
{
// Creates an XFDF File from a 2 dimensional
// Array Format: "array ("key1" => "content1", "key2" => "content2");
$xfdf = "<?xml version='1.0' encoding='UTF-8'?>\n";
$xfdf .= "<xfdf xmlns='http://ns.adobe.com/xfdf/' xml:space='preserve'>\n";
//$xfdf .= "<f href='".$pdf_file."'/>";
$xfdf .= "<fields>\n";
// Loop -> Array to XFDF Data
foreach ($xfdf_data as $key => $val)
{
$xfdf .= "<field name='".$key."'>\n";
$xfdf .= "<value>".$val."</value>\n";
$xfdf .= "</field>\n";
}
// XFDF "Footer"
$xfdf .= "</fields>";
$xfdf .= "<f href='".$pdf_file."'/>";
$xfdf .= "</xfdf>";
return $xfdf;
}
$xfdf_data = array(
"KUNDE" => $_POST['KUNDE']
);
header('Content-type: application/vnd.adobe.xfdf');
//echo array2xfdf($xfdf_data, $pdf_file);
array2xfdf($xfdf_data, $pdf_file);
?>
Diese soll dann mein PDF öffnen und die eingegeben POST Daten in das PDF befüllen. Doch sobald die xfdf.php aufgerufen wird, passiert gar nichts mehr. :confused:
Was mache ich falsch oder wo liegt mein Denkfehler?
gruss
dany