in reply to displaying pdf
Disclaimer
If I select Acrobat a warning about a damaged file comes up and is being repaired. A blank pdf file is displayed.
I will work it some more or some one can spot my error.
#!perl -w $| = 1; print "Content-Type: application/pdf\n\n"; open(FILE,"dental.pdf") or die("$!"); binmode(FILE); while (sysread(FILE,$buffer,1024)) { print STDOUT $buffer; } [download]
#!perl -w $| = 1; open(FILE,"dental.pdf") or die("$!"); print "Content-Type: application/pdf\n\n"; binmode(FILE); binmode(STDOUT); while (read(FILE,$buffer,64000)) { print STDOUT $buffer; } [download]