Ave,

The browser window which launched the Save As window...




On 8/24/04 1:41 PM, "John Nichel" <[EMAIL PROTECTED]> wrote:

> PHP Junkie wrote:
>> Ave,
>> 
>> I use the PHP Header directives to create a page which would force-download
>> the file for the user...
>> 
>> <?php
>> $file = "$P/$F";
>> header("Content-Description: File Transfer");
>> header("Content-Type: application/force-download");
>> header("Content-Disposition: attachment; filename=".basename($file));
>> @readfile($file);
>> ?>
>> 
>> What I want is to have this window close automatically once it's launched
>> the Save As Dialog Box ... I tried several javascript window.close(),
>> self.close() functions but none of them seem to work. The window wont close.
>> It remains open.
> 
> You wish to close which window?  The "Save As" window, or the browser
> window which launched the "Save As" window?
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to