Thread Pdf aus Datenbank - Problem mit Leerzeile (4 answers)
Opened by cyric at 2010-02-11 16:29

cyric
 2010-02-11 16:46
#132702 #132702
User since
2010-02-11
2 Artikel
BenutzerIn
[default_avatar]
Ja, hab ich probiert. Die Ausgabe läuft ganz simpel:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
			
my $filename = "Rechnung_".$rgnr.".pdf";

$http_headers_out{'Cache-Control'} = ": no-cache, must-revalidate";
$http_headers_out{'Expires'} = ": Sat, 26 Jul 1997 05:00:00 GMT";
$http_headers_out{'Content-type'} = ": application/pdf";
$http_headers_out{'Content-Disposition'} = ": attachment; filename=$filename";
$http_headers_out{'Content-Transfer-Encoding'} = ": binary";
binmode(STDOUT);

print output;


Leerzeilen in den involvierten Dateien (nach Datei Ende Zeichen) habe ich ebenfalls entfernt.

View full thread Pdf aus Datenbank - Problem mit Leerzeile