I wrote:
> You could try adding an extra header:
>
> header('Content-Disposition: inline; filename=somefile.pdf');
Or, if you want to prompt the user to save the document, use
header('Content-Disposition: attachment; filename=somefile.pdf');
Jason