Hello,
I am using PHP + PostgreSQL to store documents as large objects and I want to let my non-technical users download them as simply as possible.
They should be able to click on a link or a button and have their browser open a download window (or in IE, have the correct app auto launched).
The main problem is the file name:
If my URL is: http://www.example.com/download.php?docid=123
The browser dowload window defaults to "download.php".
How do I inject the file name? Some sort of header?
Thanks
--Louis