 |
Flitig postare
|
|
Reg.datum: Mar 2007
Inlägg: 375
|
|
Flitig postare
Reg.datum: Mar 2007
Inlägg: 375
|
Tackar!
Här är lösningen för andra som undrar:
<?php
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdf
readfile('original.pdf');
?>
|