[PHP] How do I open Save As Dialog Box?

2004-08-23 Thread PHP Junkie
Ave, I'm facing a little problem. I have created a File Manager Application for my company which has a place where authorized users can download the stored files. The files are of various MIME Types.. Mainly PDF, TXT DOC. What I want to do is basically... When the user clicks on the Download

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread John Holmes
From: PHP Junkie [EMAIL PROTECTED] I have created a File Manager Application for my company which has a place where authorized users can download the stored files. The files are of various MIME Types.. Mainly PDF, TXT DOC. What I want to do is basically... When the user clicks on the Download

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread John Nichel
PHP Junkie wrote: Ave, I'm facing a little problem. I have created a File Manager Application for my company which has a place where authorized users can download the stored files. The files are of various MIME Types.. Mainly PDF, TXT DOC. What I want to do is basically... When the user clicks on

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread Torsten Roehr
Php Junkie [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Ave, I'm facing a little problem. I have created a File Manager Application for my company which has a place where authorized users can download the stored files. The files are of various MIME Types.. Mainly PDF, TXT DOC.

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread Daniel Schierbeck
Php Junkie wrote: Ave, I'm facing a little problem. I have created a File Manager Application for my company which has a place where authorized users can download the stored files. The files are of various MIME Types.. Mainly PDF, TXT DOC. What I want to do is basically... When the user clicks on

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread PHP Junkie
Ave, IT WORKS!! There wasn't one bit of a problem.. I'll just paste the code here again for anyone who might be looking for it. I guess I was very close to it but just doing one thing wrong... I wasn't specifying the Basename directive. ?php $file = $P/$F; header(Content-Description: File

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread Jonathan Haddad
In Safari it'll download the file and then open it. Jon PHP Junkie wrote: Ave, IT WORKS!! There wasn't one bit of a problem.. I'll just paste the code here again for anyone who might be looking for it. I guess I was very close to it but just doing one thing wrong... I wasn't specifying the

Re: [PHP] How do I open Save As Dialog Box?

2004-08-23 Thread PHP Junkie
Ave, Yes indeed that's what it's doing. But that's ok... My main concern was for Windows users because that's the majority of the users for this application. Thanks. On 8/23/04 12:50 PM, Jonathan Haddad [EMAIL PROTECTED] wrote: In Safari it'll download the file and then open it. Jon