Re: download binary files to browser

Поиск
Список
Период
Сортировка
От Stephen van Egmond
Тема Re: download binary files to browser
Дата
Msg-id 20010107124137.C21271@bang.dhs.org
обсуждение исходный текст
Ответ на download binary files to browser  (Louis Bertrand <louis@bertrandtech.on.ca>)
Ответы Re: download binary files to browser  (Louis Bertrand <louis@bertrandtech.on.ca>)
Список pgsql-php
Louis Bertrand (louis@bertrandtech.on.ca) wrote:
> What headers can I send to fill in that file name?

Look at content-disposition in the HTTP RFC.

I do this in a similar application:
header("Content-Disposition: attachment; filename=\"$original_name\"");

it helps on the end-user side if you also report the correct
MIME type for the document (i.e. application/msword).

header("Content-type: $mime");


В списке pgsql-php по дате отправления:

Предыдущее
От: Louis Bertrand
Дата:
Сообщение: download binary files to browser
Следующее
От: Louis Bertrand
Дата:
Сообщение: Re: download binary files to browser