mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 05:09:28 +00:00
6 lines
112 B
PHP
6 lines
112 B
PHP
<?php
|
|
header("Content-type: application/pdf");
|
|
$fp = fopen($filename, "r");
|
|
fpassthru($fp);
|
|
fclose($fp);
|
|
?>
|