This commit is contained in:
Christian Paminger
2006-11-27 08:47:48 +00:00
parent 0f0296a02a
commit bee9fab1cf
23 changed files with 2084 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
header("Content-type: application/pdf");
$fp = fopen($filename, "r");
fpassthru($fp);
fclose($fp);
?>