I am trying to display a pdf file which is stored im my database. When i use
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=$file_name");
I am prompted twice when i want to open the file
When i use
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=$file_name");
I am not prompted at all, it just displays the pdf in the browser.
Thanks in advance.